-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
67 lines (61 loc) · 1.74 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
#!/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()
install_requires = [
'requests',
'pyramid',
'pyramid_mako',
'waitress',
'articlemetaapi',
'lxml',
'celery[redis]',
'SQLAlchemy',
'psycopg2',
'zope.sqlalchemy',
'alembic',
]
tests_require = [
]
setup(
name="doi_request",
version="1.4.0",
description="Tool to manage the DOI registering process",
long_description=README + '\n',
author="SciELO",
author_email="[email protected]",
maintainer="Fabio Batalha",
maintainer_email="[email protected]",
url="http://github.com/scieloorg/doi_request",
packages=find_packages(exclude=["alembic", "*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
dependency_links=[],
message_extractors={
'doi_request': [
('**.py', 'python', None),
('templates/**.html', 'mako', None),
('templates/**.mako', 'mako', None),
('static/**', 'ignore', None)
]
},
tests_require=tests_require,
test_suite='tests',
install_requires=install_requires,
extras_require={'dev': ['pyramid_debugtoolbar', 'Babel']},
entry_points={
'paste.app_factory': [
'main = doi_request:main',
],
'console_scripts': [
'processing_export_doi = processing.exportDOI:main',
'processing_export_id = processing.export2id:main'
]
},
)