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

23 lines
703 B
Python
Raw Normal View History

2015-10-04 06:28:52 +00:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown',
2015-10-05 23:41:42 +00:00
version='0.0.2',
2015-10-04 06:28:52 +00:00
description='python stuf for tilde.town',
url='https://github.com/tildetown/tildetown-scripts',
author='vilmibm shaksfrpease',
author_email='nks@lambdaphil.es',
license='GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Other Audience',
'Topic :: Artistic Software',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
],
keywords='community',
packages=['tildetown'],
2015-10-05 23:41:42 +00:00
install_requires = ['pyhocon==0.3.10', 'sh==1.11', 'Flask==0.10.1', 'requests==2.7.0', 'pystache==0.5.4'],
2015-10-04 06:28:52 +00:00
)