-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
69 lines (64 loc) · 2.17 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pymongo>=3.5.1',
'lxml>=3.4.2',
'requests>=2.11.1',
'picles.plumber>=0.10',
'pyramid>=1.5.4',
'thriftpy2==0.5.0',
'thriftpywrap==1.0.0',
'xylose>=1.35.9',
'crossrefapi>=1.3',
]
test_requires = ['mocker', 'nose>=1.0', 'coverage', 'mongomock']
setup(
name="articlemeta",
version='1.47.1',
description="A SciELO API to load SciELO Articles metadata",
author="SciELO",
author_email="[email protected]",
license="BSD 2-clause",
url="http://docs.scielo.org",
keywords='scielo articlemeta',
packages=find_packages(),
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Topic :: System",
"Topic :: Utilities",
],
dependency_links=[
"git+https://github.com/scieloorg/[email protected]#egg=thriftpywrap",
"git+https://github.com/scieloorg/[email protected]#egg=xylose",
],
include_package_data=True,
zip_safe=False,
tests_require=test_requires,
install_requires=requires,
test_suite="nose.collector",
entry_points="""\
[paste.app_factory]
main = articlemeta:main
[console_scripts]
articlemeta_loadmixedcitations=processing.load_mixedcitations:main
articlemeta_loadbody=processing.load_body:main
articlemeta_loadlanguages=processing.load_languages:main
articlemeta_loadsections=processing.load_sections:main
articlemeta_loadlicense=processing.load_licenses:main
articlemeta_loaddoi=processing.load_doi:main
articlemeta_importaffiliation=processing.importaffiliation:main
articlemeta_fixpages=processing.fixpages:main
articlemeta_dumparticles=processing.dumparticles:main
articlemeta_thriftserver=articlemeta.thrift.server:main
""",
)