-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (41 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
from setuptools import find_packages, setup
__version__ = "0.1.1"
install_requires = ["httpx[http2]>=0.18"]
test_requires = [
"respx>=0.17",
"pytest-cov",
"factory_boy",
"faker_enum",
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="jelapi",
version=__version__,
author="Didier Raboud",
author_email="[email protected]",
license="GPLv3+",
description="jelapi: A Jelastic API Python library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/liip/jelapi",
packages=find_packages(),
install_requires=install_requires,
extras_require={
"test": test_requires,
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries",
"Development Status :: 4 - Beta",
],
python_requires=">=3.7",
)