movin stuff

master
nathaniel smith 2015-10-03 23:28:52 -07:00
parent 7005888d34
commit 622c3f9a51
7 changed files with 23 additions and 0 deletions

23
setup.py 100644
View File

@ -0,0 +1,23 @@
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown',
version='0.0.1',
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'],
install_requires = ['pyhocon==0.3.10', 'sh==1.11', 'Flask==0.10.1', 'requests==2.7.0'],
include_package_data = True,
)