2016-12-14 04:32:21 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tildetown-admin',
|
2017-02-16 08:49:26 +00:00
|
|
|
version='1.1.0',
|
2016-12-14 04:32:21 +00:00
|
|
|
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',
|
2016-12-14 08:30:47 +00:00
|
|
|
'sshpubkeys==2.2.0',
|
2019-01-15 05:02:45 +00:00
|
|
|
'psycopg2==2.7.6.1',
|
2017-11-07 20:51:20 +00:00
|
|
|
'gunicorn==19.6.0',
|
2019-07-09 17:28:27 +00:00
|
|
|
'Mastodon.py==1.4.5',
|
|
|
|
'tweepy==3.7.0'],
|
2016-12-14 04:32:21 +00:00
|
|
|
include_package_data = True,
|
|
|
|
)
|