29 lines
798 B
Python
29 lines
798 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='tildetown',
|
|
version='1.0.0',
|
|
description='executable scripts used on tildetown',
|
|
url='https://github.com/tildetown/tildetown-scripts',
|
|
author='vilmibm',
|
|
author_email='tildetown@protonmail.ch',
|
|
license='GPL',
|
|
classifiers=[
|
|
'Development Status :: 3 - Beta',
|
|
'Intended Audience :: Other Audience',
|
|
'Topic :: Artistic Software',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
],
|
|
keywords='community',
|
|
packages=['tildetown'],
|
|
install_requires = ['pystache==0.5.4'],
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'stats = tildetown.stats:main',
|
|
'mustache = tildetown.mustache:main'
|
|
]
|
|
},
|
|
)
|