-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (66 loc) · 2.12 KB
/
Copy pathsetup.py
File metadata and controls
70 lines (66 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from setuptools import setup, find_packages
import os
import sys
# Add the client directory to Python path to import pingera
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'client'))
from pingera import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pingera-sdk",
version=__version__,
author="Pingera Team",
author_email="[email protected]",
description="A comprehensive Python SDK for the Pingera monitoring platform API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pingera/pingera-sdk",
packages=find_packages(where="client"),
package_dir={"": "client"},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
],
python_requires=">=3.9",
install_requires=[
"urllib3>=2.1.0,<3.0.0",
"python-dateutil>=2.8.2",
"pydantic>=2",
"typing-extensions>=4.7.1",
],
extras_require={
"dev": [
"pytest>=7.2.1",
"pytest-cov>=2.8.1",
"tox>=3.9.0",
"flake8>=4.0.0",
"types-python-dateutil>=2.8.19.14",
"mypy>=1.5",
],
},
keywords=[
"pingera",
"monitoring",
"api",
"status-page",
"uptime",
"incidents",
"components",
"openapi",
],
project_urls={
"Documentation": "https://docs.pingera.ru",
"Bug Reports": "https://github.com/pingera/pingera-sdk/issues",
"Source": "https://github.com/pingera/pingera-sdk",
"Homepage": "https://pingera.ru",
},
)