-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 1020 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
from setuptools import setup, find_packages
with open("README.md", "r") as read_me:
long_description = read_me.read()
setup(
name="repox",
description="a lightweight Repox client written in Python",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.0.4",
author="Mark Baggett",
author_email="[email protected]",
maintainer_email="[email protected]",
url="https://github.com/markpbaggett/pyrepox",
packages=find_packages(),
install_requires=["requests>=2.2.1", "xmltodict>=0.11.0", "arrow>=0.13.0"],
extras_require={
"docs": [
"sphinx >= 1.4",
"sphinxcontrib-napoleon >= 0.7",
"recommonmark >= 0.4.0",
]
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
keywords=["libraries", "dpla", "europeana", "aggregators"],
)