-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 976 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
36
37
# Author: Elin
# Date: 2024-09-03 14:56:04
# Last Modified by: Elin
# Last Modified time: 2024-09-03 14:56:04
from setuptools import setup, find_packages
setup(
name = "pydxdiag",
version = "0.2.1",
packages = [
"pydxdiag",
"pydxdiag.functions",
"pydxdiag.functions.device",
"pydxdiag.functions.sz",
"pydxdiag.schema",
"pydxdiag.schema.device",
"pydxdiag.schema.sz",
],
install_requires = [
"pydantic",
"beautifulsoup4",
"lxml"
],
author = "Elin",
author_email = "[email protected]",
description = "A python library for parsing dxdiag output",
long_description_content_type="text/markdown",
python_requires = ">=3.10",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
long_description=open('README.md',encoding="utf-8").read(),
url = "https://github.com/ElinLiu0/pydxdiag",
)