This repository was archived by the owner on Feb 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.26 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.26 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
requires = [
'CouchDB>=1.2',
'Mako>=1.0.7',
'pyramid>=1.9.1',
'pyramid-mako>=1.0.2',
'pyramid_debugtoolbar>=4.4',
'waitress',
'lxml',
'cornice>=3.4.0',
'prometheus_client>=0.2.0',
]
test_requires = ['webtest', 'pytest', 'pytest-cov', 'pytest-lazy-fixture']
setup_requires = ['pytest-runner']
setup(
name="catalogmanager",
version='1.0.0',
description="",
author="SciELO",
author_email="scielo-dev@googlegroups.com",
license="BSD 2-clause",
url="https://github.com/scieloorg/catalogmanager",
keywords='scielo catalogmanager',
packages=find_packages(),
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Topic :: System",
"Topic :: Utilities",
],
zip_safe=False,
extras_require={
'testing': test_requires,
},
setup_requires=setup_requires,
tests_require=test_requires,
install_requires=requires,
entry_points={
'paste.app_factory': [
'main = api:main',
],
},
)