-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.74 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (44 loc) · 1.74 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
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).resolve().parent
README = ROOT / "README.md"
with README.open(encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="cnpower",
version="1.0.0",
author="Gawg-AI",
author_email="ahx@qq.com",
description="中国10kV/0.4kV配电网工程参数库 - Chinese 10kV/0.4kV Distribution Grid Engineering Parameter Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Gawg-AI/cnpower",
license="MIT",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[],
extras_require={
"pandapower": ["pandapower>=3.4,<4"],
"test": ["pytest>=8", "pandapower>=3.4,<4"],
"dev": ["pytest>=8", "pandapower>=3.4,<4"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Power Engineering",
],
keywords="distribution-grid pandapower power-system chinese-standards gb-t electrical-engineering",
project_urls={
"Bug Tracker": "https://github.com/Gawg-AI/cnpower/issues",
"Documentation": "https://github.com/Gawg-AI/cnpower#readme",
"Source Code": "https://github.com/Gawg-AI/cnpower",
},
)