forked from Kinto/kinto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
123 lines (108 loc) · 3.25 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import platform
import codecs
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
"""Open a related file and return its content."""
with codecs.open(os.path.join(here, filename), encoding='utf-8') as f:
content = f.read()
return content
README = read_file('README.rst')
CHANGELOG = read_file('CHANGELOG.rst')
CONTRIBUTORS = read_file('CONTRIBUTORS.rst')
installed_with_pypy = platform.python_implementation() == 'PyPy'
REQUIREMENTS = [
'colander',
'colorama',
'cornice >= 1.1', # Fix cache CORS
'jsonschema',
'python-dateutil',
'pyramid_multiauth >= 0.8', # User on policy selected event.
'pyramid_tm',
'requests',
'six',
'structlog >= 16.1.0',
'enum34',
'waitress',
]
if installed_with_pypy:
# We install psycopg2cffi instead of psycopg2 when dealing with pypy
# Note: JSONB support landed after psycopg2cffi 2.7.0
POSTGRESQL_REQUIRES = [
'SQLAlchemy',
'psycopg2cffi>2.7.0',
'zope.sqlalchemy',
]
else:
# ujson is not pypy compliant, as it uses the CPython C API
REQUIREMENTS.append('ujson >= 1.35')
POSTGRESQL_REQUIRES = [
'SQLAlchemy',
'psycopg2>2.5',
'zope.sqlalchemy',
]
REDIS_REQUIRES = [
'kinto_redis'
]
SETUP_REQUIRES = [
'pytest-runner'
]
TEST_REQUIREMENTS = [
'pytest',
'WebTest'
]
DEPENDENCY_LINKS = [
]
MONITORING_REQUIRES = [
'raven',
'statsd',
'newrelic',
'werkzeug',
]
ENTRY_POINTS = {
'paste.app_factory': [
'main = kinto:main',
],
'console_scripts': [
'kinto = kinto.__main__:main'
],
}
setup(name='kinto',
version='4.3.0.dev0',
description='Kinto Web Service - Store, Sync, Share, and Self-Host.',
long_description=README + "\n\n" + CHANGELOG + "\n\n" + CONTRIBUTORS,
license='Apache License (2.0)',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: Apache Software License"
],
keywords="web sync json storage services",
author='Mozilla Services',
author_email='[email protected]',
url='https://github.com/Kinto/kinto',
packages=find_packages(),
package_data={'': ['*.rst', '*.py']},
include_package_data=True,
zip_safe=False,
setup_requires=SETUP_REQUIRES,
tests_require=TEST_REQUIREMENTS,
install_requires=REQUIREMENTS,
extras_require={
'redis': REDIS_REQUIRES,
'postgresql': POSTGRESQL_REQUIRES,
'monitoring': MONITORING_REQUIRES,
":python_version=='2.7'": ["functools32", "futures"],
},
test_suite="tests",
dependency_links=DEPENDENCY_LINKS,
entry_points=ENTRY_POINTS)