forked from mihneasim/iphy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.42 KB
/
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
37
38
39
40
41
42
43
import re
from setuptools import setup
setup(
name='iphy',
version='1.0',
url='https://github.com/mihneasim/iphy',
license='Mozilla Public License',
author='Mihnea Simian',
author_email='[email protected]',
description='hip nanoblogging',
packages=['iphy'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['Flask==0.9',
'Jinja2==2.6',
'Werkzeug==0.8.3',
'Flask-Script==0.5.3',
'Flask-WTF==0.8.3',
'Flask-Assets==0.8',
'Flask-Uploads==0.1.3',
'Flask-Login==0.1.3',
'Flask-Mongo==0.2.1',
'webassets==0.8',
'pymongo==2.4.2',
'WTForms==1.0.3',
'path.py==3.0.1',
'jsmin==2.0.2-1',
'cssmin==0.1.4',
],
entry_points={'console_scripts': ['manage = iphy.manage:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)