This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues/pull-requests.
tildetown-scripts/setup.py

29 lines
788 B
Python
Raw Permalink Normal View History

2015-10-04 06:28:52 +00:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown',
2017-06-23 02:10:37 +00:00
version='1.0.2',
description='executable scripts used on tildetown',
2015-10-04 06:28:52 +00:00
url='https://github.com/tildetown/tildetown-scripts',
author='vilmibm',
author_email='tildetown@protonmail.ch',
2015-10-04 06:28:52 +00:00
license='GPL',
classifiers=[
'Development Status :: 3 - Beta',
2015-10-04 06:28:52 +00:00
'Intended Audience :: Other Audience',
'Topic :: Artistic Software',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2015-10-04 06:28:52 +00:00
],
include_package_data=True,
2015-10-04 06:28:52 +00:00
keywords='community',
packages=['tildetown'],
install_requires = ['pystache==0.5.4'],
entry_points = {
'console_scripts': [
'mustache = tildetown.__init__:mustache',
]
},
2015-10-04 06:28:52 +00:00
)