-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.44 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.44 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
51
52
53
#!/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.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()
install_requires = [
'slumber==0.7.1',
'mako==1.0.4',
'requests==2.11.1'
]
test_requires = []
setup(
name="delorean2isis",
version='1.0.2',
description="A SciELO utilitary to download SciELO Manager content to local SciELO sites for processing",
author="SciELO",
author_email="scielo-dev@googlegroups.com",
license="BSD 2-clause",
url="http://docs.scielo.org",
keywords='scielo statistics',
packages=[],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Topic :: System",
"Topic :: Services",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
dependency_links=[
],
include_package_data=True,
zip_safe=False,
setup_requires=["nose>=1.0", "coverage"],
tests_require=test_requires,
install_requires=install_requires,
test_suite="nose.collector",
entry_points="""\
[console_scripts]
delorean2isis = delorean2isis:main
""",
)