-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
48 lines (46 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
44
45
46
47
48
from setuptools import setup, find_packages
install_requires = [
'Babel>=2.5.3,<3.0',
'eve==0.7.8',
'eve-elastic==2.5.0',
'WTForms==2.2.1',
'flask>=0.12,<1.0',
'flask-webpack>=0.1.0,<0.2',
'Flask-WTF>=0.14.2,<0.15',
'flask-limiter>=0.9.5.1,<0.9.6',
'Flask-Cache>=0.13.1,<0.14',
'flask_pymongo>=0.5.2,<1.0',
'honcho>=1.0.1',
'gunicorn>=19.7.1',
'superdesk-core<1.34',
'superdesk-planning<1.34',
'PyRTF3>=0.47.5',
'xhtml2pdf>=0.2.4',
'werkzeug>=0.9.4,<=0.11.15',
'urllib3<1.26',
'bleach>=3.3.1'
]
setup(
name='Newsroom',
version='1.0',
description='Newsroom app',
author='Sourcefabric',
url='https://github.com/superdesk/newsroom',
license='GPLv3',
platforms=['any'],
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=install_requires,
dependency_links=['http://github.com/superdesk/superdesk-planning/tarball/master#egg=superdesk-planning'],
scripts=['manage.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)