Этот репозиторий архивирован 2019-12-12. Вы можете смотреть файлы или клонировать его, но не можете вносить изменения, открывать задачи или делать запросы на слияние.
tildetown-scripts/setup.py

29 строки
788 B
Python

#!/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': [
'mustache = tildetown.__init__:mustache',
]
},
)