-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
###########################################################
# This is an example - must be modified
###########################################################
# Create a MANIFEST.in
# To include other files
# Add:
# include output README.md LICENSE
###########################################################
import pathlib
from setuptools import find_packages, setup
VERSION = "1.0.52"
NAME = "winscraper"
DESCRIPTION = "A CLI tool and a library used for collecting information about devices running the Windows OS."
WORKING_DIR = pathlib.Path(__file__).parent
README_CONTENT = (WORKING_DIR / "README.md").read_text()
REQUIREMENTS = [
'psutil==5.8.0',
'pypiwin32',
'wmi>=1.5.0',
'json2xml',
'toml',
'pyyaml>=5.4.1',
]
setup(
name=NAME,
version=VERSION,
author="Manjana",
author_email="[email protected]",
description=DESCRIPTION,
long_description=README_CONTENT,
long_description_content_type="text/markdown",
# options={"bdist_wheel": {"universal": True}},
url="https://www.github.com/blue-hexagon/winscraper",
project_urls={
"Bug Tracker": "https://github.com/blue-hexagon/winscraper/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Topic :: System :: Monitoring",
"Development Status :: 3 - Alpha",
],
keywords="system monitoring monitor",
packages=find_packages(),
python_requires=">=3.9, <4",
include_package_data=True,
install_requires=REQUIREMENTS,
# setup_requires=Anything the setup requires,
entry_points={
"console_scripts": [
"winscraper=src.winscraper:main",
]
},
)