-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (32 loc) · 1.16 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
import os
import warnings
warnings.filterwarnings("ignore")
from setuptools import find_packages, setup
with open(os.path.join("version.txt")) as version_file:
version_from_file = version_file.read().strip()
with open("requirements.txt") as f_required:
required = f_required.read().splitlines()
with open("test_requirements.txt") as f_tests:
required_for_tests = f_tests.read().splitlines()
setup(
name="cloudshell-snmp",
url="http://www.qualisystems.com/",
author="QualiSystems",
author_email="info@qualisystems.com",
packages=find_packages(),
install_requires=required,
test_suite="tests",
tests_require=required_for_tests,
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
version=version_from_file,
description="QualiSystems SNMP Python package",
long_description="QualiSystems SNMP Python package",
include_package_data=True,
)