-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (24 loc) · 830 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from setuptools import setup
setup(
name='tildetown-admin',
version='1.1.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',
'psycopg2==2.6.2',
'requests==2.12.5',
'gunicorn==19.6.0',
'Mastodon.py==1.1.1',
'tweepy==3.5.0'],
include_package_data = True,
)