-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 965 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
33
34
35
#!/usr/bin/env python
from setuptools import setup
requires = [
"legendarium>=1.2.0"
]
setup(
name="xylose",
version='1.35.11',
description="A SciELO library to abstract a JSON data structure that is a "
"product of the ISIS2JSON conversion using the ISIS2JSON type "
"3 data model.",
author="SciELO",
author_email="[email protected]",
license="BSD 2-clause",
url="http://docs.scielo.org",
packages=['xylose'],
include_package_data=True,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Customer Service",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Topic :: System",
"Topic :: Utilities",
],
dependency_links=[],
setup_requires=[],
tests_require=[],
install_requires=requires,
test_suite="tests",
)