forked from EnergyNode/sisa_public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 720 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 720 Bytes
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
"""The license of each required packages is shown in the comments.
The information is from PYPI or its github site.
"""
import os
from pathlib import Path
import setuptools
_LONG_DESCRIPTION = Path(os.path.dirname(__file__)).joinpath("README.md").read_text()
_REQUIREMENTS = Path(os.path.dirname(__file__)).joinpath("requirements.txt").read_text()
setuptools.setup(
name="sisa",
version="1.0",
author="Lei Wu",
author_email="energynode@outlook.com",
description="SISO Impedance-Based Stability Analysis",
long_description=_LONG_DESCRIPTION,
packages=setuptools.find_packages(),
install_requires=_REQUIREMENTS,
classifiers=[
"Programming Language :: Python :: 3",
],
)