forked from ourresearch/total-impact-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 816 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
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name = 'totalimpact',
version = '0.2.0',
packages = find_packages(),
install_requires = [
"Flask==0.7.2",
"Flask-Login",
"Flask-WTF",
"couchdb",
"requests",
"BeautifulSoup",
"lxml",
"simplejson",
"python-memcached",
"rq",
"zs.bibtex"
],
url = '',
author = 'total-impact',
author_email = 'totalimpactdev@gmail.com',
description = 'source code for the service at http://total-impact.org',
license = 'MIT',
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)