-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 908 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown',
version='1.0.2',
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)',
],
include_package_data=True,
keywords='community',
packages=['tildetown'],
install_requires = ['pystache==0.5.4'],
entry_points = {
'console_scripts': [
'stats = tildetown.stats:main',
'mustache = tildetown.__init__:mustache',
'generate_homepage = tildetown.__init__:generate_homepage',
]
},
)