forked from Kinto/kinto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
92 lines (83 loc) · 1.88 KB
/
setup.cfg
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
[metadata]
name = kinto
version = 13.3.0.dev0
description = Kinto Web Service - Store, Sync, Share, and Self-Host.
long_description = file: README.rst, CHANGELOG.rst, CONTRIBUTORS.rst
license = Apache License (2.0)
author = Mozilla Services
author_email = storage-team@mozilla.com
url = https://github.com/Kinto/kinto
download_url = https://github.com/Kinto/kinto/tarball/master
keywords = web sync json storage services
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
License :: OSI Approved :: Apache Software License
[options]
packages = find:
include_package_data = True
zip_safe = False
install_requires =
bcrypt
colander
cornice
cornice_swagger
dockerflow
jsonschema>=3.0.0
jsonpatch
logging-color-formatter
python-dateutil
pyramid<2.0
pyramid_mailer
pyramid_multiauth
transaction
pyramid_tm
requests
waitress
ujson
tests_require =
bravado_core
pytest
pytest-runner
WebTest
test_suite = tests
[options.packages.find]
exclude =
docs
tests
[options.package_data]
* = *.rst, *.py, *.yaml
[options.entry_points]
paste.app_factory =
main = kinto:main
console_scripts =
kinto = kinto.__main__:main
[options.extras_require]
redis =
kinto_redis
memcached =
python-memcached
postgresql =
SQLAlchemy
psycopg2
zope.sqlalchemy
monitoring =
newrelic
raven
statsd
werkzeug
[aliases]
test=pytest
[zest.releaser]
create-wheel = yes
releaser.after_checkout = kinto.plugins.admin.release_hook.after_checkout
[bdist_wheel]
python_tag=cp3
[coverage:run]
branch = True
omit = kinto/plugins/admin/release_hook.py