forked from rufuspollock-okfn/bibserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 851 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
from setuptools import setup, find_packages
setup(
name = 'mypapers',
version = '0.0.1',
packages = find_packages(),
install_requires = [
"Flask==0.10",
"Flask-Login",
"Flask-WTF",
"pyes==0.16",
"chardet",
"requests",
],
url = 'http://mypapers.allkos.info/',
author = 'Jason Zou',
author_email = '[email protected]',
description = 'MyPapers is a personal papers management system.',
license = 'AGPL',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)