forked from superdesk/newsroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.12 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
from setuptools import setup, find_packages
install_requires = [
'eve==0.7.8',
'flask-babel>=0.11.2,<0.12',
'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.15.1,<1.16',
]
setup(
name='Newsroom',
version='0.1',
description='Newsroom client 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,
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',
]
)