-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (33 loc) · 1010 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
from setuptools import find_packages, setup
install_requirements = [
"httpx[http2]>=0.23.0",
"pydantic>=1.10.2",
"pydantic-collections>=0.3.0",
]
tests_requirements = [
"coverage",
"pre-commit",
"pytest-cov",
"pytest",
"pytest-asyncio",
]
setup(
name="core_client",
version="1.1.1",
url="https://github.com/datarhei/core-client-python",
description="datarhei Core PyClient",
author="FOSS GmbH",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: datarhei Core Development :: Libraries",
],
keywords="datarhei core rest client http httpx asyncio pydantic",
packages=find_packages(exclude=["tests*"]),
setup_requires=["pytest-runner"],
install_requires=install_requirements,
tests_require=tests_requirements,
)