-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (32 loc) · 1.18 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
from nleis import __version__
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="nleis",
version=__version__,
author="Yuefan Ji and nleis.py developers",
author_email="yuefan@uw.edu",
description=("A NLEIS toolbox for impedance.py that provides RC level "
"nonlinear equivalent circuit modeling (nECM) and analysis"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://nleispy.readthedocs.io/en/latest/",
project_urls={
"Bug Tracker": "https://github.com/yuefan98/nleis.py",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(include=['nleis']),
package_data={
"nleis": ["data/*", 'nleis_tests/*'],
},
python_requires=">=3.8",
install_requires=['altair>=3.0', 'matplotlib>=3.5',
'numpy>=1.14', 'scipy>=1.0',
'networkx>=2.6.3',
'impedance>=1.7.1', 'pandas >= 2.0.2'],
)