forked from superdesk/superdesk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
88 lines (83 loc) · 2.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# -*- coding: utf-8; -*-
#
# This file is part of Superdesk.
#
# Copyright 2013, 2014, 2015 Sourcefabric z.u. and contributors.
#
# For the full copyright and license information, please see the
# AUTHORS and LICENSE files distributed with this source code, or
# at https://www.sourcefabric.org/superdesk/license
from setuptools import setup, find_packages
LONG_DESCRIPTION = "Superdesk Server Core"
install_requires = [
'eve>=0.6,<0.7',
'eve-elastic>=0.5.2,<0.7',
'elasticsearch>=1.9.0,<2.0',
'flask>=0.10,<0.11',
'flask-mail>=0.9,<0.10',
'flask-script>=2.0.5,<3.0',
'flask-sentinel>=0.0.4,<0.1',
'flask-oauthlib>=0.9.1,<0.10',
'pillow>=3.0,<3.5',
'arrow>=0.4,<0.9',
'asyncio>=3.4,<3.5',
'bcrypt>=3.1.1,<3.2',
'beautifulsoup4>=4.4,<4.6',
'blinker>=1.3,<1.5',
'celery[redis]>=3.1.18,<4',
'feedparser>=5.2,<5.3',
'hachoir3-superdesk>=3.0a1,<3.1',
'HermesCache>=0.6.0,<0.7.0',
'python-magic>=0.4,<0.5',
'python3-ldap>=0.9.8,<0.9.9',
'pytz>=2015.4',
'tzlocal>=1.2.2,<1.4',
'raven[flask]>=5.10,<6.0',
'requests>=2.7.0,<2.13',
'statsd>=3.1,<3.3',
'httmock>=1.2.3,<1.3',
'boto3>=1.1.4,<1.5',
'websockets>=2.6,<3.3',
'mongolock>=1.3.4,<1.4',
'PyYAML>=3.11,<3.13',
'pyjwt>=1.4.2,<1.5',
]
package_data = {
'superdesk': [
'templates/*.txt',
'templates/*.html',
'locators/data/*.json',
'io/data/*.json',
],
'apps': [
'prepopulate/*.json',
'prepopulate/data_init/*.json',
'io/data/*.json',
]
}
setup(
name='Superdesk-Core',
version='1.5rc1',
description='Superdesk Core library',
long_description=LONG_DESCRIPTION,
author='petr jasek',
author_email='[email protected]',
url='https://github.com/superdesk/superdesk-core',
license='GPLv3',
platforms=['any'],
packages=find_packages(exclude=['tests', 'features']),
package_data=package_data,
include_package_data=True,
install_requires=install_requires,
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',
]
)