-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
92 lines (81 loc) · 3.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
from setuptools import setup, find_packages
from os.path import exists, join
entry_points = {
"gui_scripts": [
"deareis = deareis.program:main",
],
"console_scripts": [
"deareis-debug = deareis.program:debug", # For the convenience of users on Windows
],
}
dependencies = [
"dearpygui~=1.11", # Used to implement the GUI.
"requests~=2.32", # Used to check package status on PyPI.
"pyimpspec~=5.1", # Used for parsing, fitting, and analyzing impedance spectra.
]
dev_dependencies = [
"build~=1.2",
"flake8~=7.1",
"setuptools~=75.3",
"sphinx~=8.1",
"sphinx-rtd-theme~=3.0",
]
optional_dependencies = {
"cvxopt": "cvxopt~=1.3", # Used in the DRT calculations (TR-RBF method)
"kvxopt": "kvxopt~=1.3", # Fork of cvxopt that may provide wheels for additional platforms
"dev": dev_dependencies,
}
# The version number defined below is propagated to /src/deareis/version.py
# when running this script.
version = "5.1.0"
if __name__ == "__main__":
with open("requirements.txt", "w") as fp:
fp.write("\n".join(dependencies))
with open("dev-requirements.txt", "w") as fp:
fp.write("\n".join(dev_dependencies))
with open("version.txt", "w") as fp:
fp.write(version)
assert version.strip != ""
copyright_notice = ""
if exists("COPYRIGHT"):
with open("COPYRIGHT") as fp:
copyright_notice = fp.read().strip()
assert copyright_notice.strip() != ""
with open(join("src", "deareis", "version.py"), "w") as fp:
fp.write(f'{copyright_notice}\n\nPACKAGE_VERSION: str = "{version}"')
setup(
name="deareis",
version=version,
author="DearEIS developers",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
url="https://vyrjana.github.io/DearEIS",
project_urls={
"Documentation": "https://vyrjana.github.io/DearEIS/api/",
"Source Code": "https://github.com/vyrjana/DearEIS",
"Bug Tracker": "https://github.com/vyrjana/DearEIS/issues",
},
license="GPLv3",
description="A GUI program for analyzing, simulating, and visualizing impedance spectra.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
entry_points=entry_points,
install_requires=dependencies,
extras_require=optional_dependencies,
python_requires=">=3.10",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
],
)