forked from the-library-code/dspace-rest-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.27 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dspace-rest-client",
version="0.1.12",
author="Kim Shepherd",
author_email="kim@the-library-code.de",
description="A DSpace 7 REST API client library",
license="BSD-3-Clause",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/the-library-code/dspace-rest-client",
project_urls={
'Documentation': 'https://github.com/the-library-code/dspace-rest-python/blob/main/README.md',
'GitHub': 'https://github.com/the-library-code/dspace-rest-python',
'Changelog': 'https://github.com/the-library-code/dspace-rest-python/blob/main/CHANGELOG.md',
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=["dspace_rest_client"],
install_requires=["requests >= 2.32.3",
"pysolr >= 3.10.0"],
python_requires=">=3.8.0",
)