tildetown-admin/setup.py

24 lines
699 B
Python
Raw Normal View History

2016-12-14 04:32:21 +00:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown-admin',
version='1.0.0',
description='administrative webapp for tilde.town',
url='https://github.com/nathanielksmith/prosaic',
author='vilmibm shaksfrpease',
author_email='vilmibm@protonmail.ch',
license='AGPL',
classifiers=[
'Topic :: Artistic Software',
'License :: OSI Approved :: Affero GNU General Public License v3 (AGPLv3)',
],
packages=['ttadmin'],
install_requires = ['Django==1.10.2',
'sshpubkeys==2.2.0',
2017-01-20 08:40:18 +00:00
'psycopg2==2.6.2',
'requests==2.12.5'],
2016-12-14 04:32:21 +00:00
include_package_data = True,
)