-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (35 loc) · 1015 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
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name = 'octopus',
version = '1.0.0',
packages = find_packages(),
install_requires = [
"werkzeug==0.8.3",
"Flask==0.9",
"Flask-Login==0.1.3",
"requests",
"esprit",
"simplejson",
"lxml==3.4.4",
"Flask-WTF==0.8.3",
"nose",
"Flask-Mail==0.9.1",
"python-dateutil",
"unidecode",
"objectpath",
"schedule==0.3.2"
],
url = 'http://cottagelabs.com/',
author = 'Cottage Labs',
author_email = 'us@cottagelabs.com',
description = 'Magnificent Octopus - Flask application helper library',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Copyheart',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)