-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.68 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.68 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
55
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
def get_version():
with open("hostingde/__version__.py") as f:
for line in f:
if line.startswith("__version__"):
return eval(line.split("=")[-1])
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="python-hostingde",
version=get_version(),
description="Interact with HostingDe API",
long_description=readme,
long_description_content_type="text/markdown",
author="CANCOM OpenSource",
author_email="opensource@cancom.de",
license="MIT",
url="https://github.com/cancom/python-hostingde",
packages=find_packages(exclude=["docs*", "tests*"]),
install_requires=[
"requests>=2.25.1",
"marshmallow==3.10.0",
"marshmallow-dataclass==8.3.1",
"marshmallow-enum==1.5.1",
"urllib3~=1.26.3",
],
python_requires=">=3.6.0",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
project_urls={
"Source": "https://github.com/cancom/python-hostingde",
"Bug Reports": "https://github.com/cancom/python-hostingde/issues",
},
)