forked from ciuccislab/pyDRTtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (60 loc) · 1.96 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
__authors__ = 'Francesco Ciucci, Adeleke Maradesa'
__date__ = '26th Jan., 2024'
import setuptools
from os.path import exists, join
def readme():
try:
with open('README.md') as f:
return f.read()
except IOError:
return ''
entry_points={
"console_scripts": [
"launchGUI=pyDRTtools.cli:main",
],
}
dependencies = [
"cvxopt~=1.3", # cvxopt optimizer
"requests~=2.28",
"scipy==1.10.0",
"numpy==1.24.1",
"scikit-learn>=1.2.1",
"PyQt5==5.15.9",
"matplotlib==3.7.3",
"pandas==1.5.3",
]
setuptools.setup(
name = "pyDRTtools",
version = "0.2",
author = "ciuccislab",
author_email = "[email protected]",
description = "pyDRTtools: A Python-based DRTtools to Deconvolve the Distribution of Relaxation Times from Electrochemical Impedance Spectroscopy Data",
long_description = readme(),
long_description_content_type = "text/markdown",
###
url = "https://github.com/ciuccislab/pyDRTtools",
project_urls = {
"Source Code": "https://github.com/ciuccislab/pyDRTtools",
"Bug Tracker": "https://github.com/ciuccislab/pyDRTtools/issues",
},
entry_points=entry_points,
#install_requires=dependencies,
install_requires=[
'click','ipython'],
python_requires = ">=3",
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['pyDRTtools'],
include_package_data=True,
package_data={'pyDRTtools': ['EIS data/*']}, # Specify package data
)