-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
35 lines (32 loc) · 1.01 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
#!/usr/bin/env python
import setuptools
install_requires = [
'thriftpy2',
'requests>=2.19.1',
'xylose>=1.33.1'
]
tests_require = []
setuptools.setup(
name="articlemetaapi",
version="1.26.7",
description="SciELO ArticleMeta SDK for Python",
author="SciELO",
author_email="[email protected]",
url="http://github.com/scieloorg/articlemetaapi",
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
tests_require=tests_require,
test_suite='tests',
install_requires=install_requires,
zip_safe=False
)