-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (46 loc) · 1.85 KB
/
setup.py
File metadata and controls
54 lines (46 loc) · 1.85 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open("PYPI_README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read()
with open("requirements_test.txt") as requirements_file:
test_requirements = requirements_file.read()
setup_requirements = ["pytest-runner"]
setup(
author="Daniel Troeder",
author_email="troeder@univention.de",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
],
description="Python library to interact with the Univention UDM REST API. Implements the simple Python UDM API.",
license="GNU Affero General Public License v3",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="Univention UCS UDM REST",
name="udm-rest-client",
packages=find_packages(include=["udm_rest_client"]),
install_requires=requirements,
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
python_requires=">=3.9",
scripts=["update_openapi_client"],
url="https://github.com/univention/python-udm-rest-api-client",
version="1.3.2",
zip_safe=False,
)