forked from fabiobatalha/crossrefapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 835 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from crossref import VERSION
install_requires = [
'requests>=2.11.1'
]
tests_require = []
setup(
name="crossrefapi",
version=VERSION,
description="Library that implements the endpoints of the Crossref API",
author="SciELO",
author_email="[email protected]",
maintainer="Fabio Batalha",
maintainer_email="[email protected]",
url="http://github.com/fabiobatalha/crossrefapi",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
dependency_links=[],
tests_require=tests_require,
test_suite='tests',
install_requires=install_requires
)