-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.json
67 lines (67 loc) · 2.22 KB
/
setup.json
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
{
"name": "sportran",
"version": "1.0.0rc4",
"author": "Loris Ercole, Riccardo Bertossa, Sebastiano Bisacchi",
"author_email": "[email protected]",
"description": "Cepstral Data Analysis of current time series for Green-Kubo transport coefficients",
"license": "GPL 3",
"url": "https://github.com/sissaschool/sportran",
"keywords": "cepstral data analysis thermal conductivity transport coefficients physics green-kubo",
"python_requires": ">=3.7, <4",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Environment :: Console"
],
"install_requires": [
"numpy>=1.18.0",
"scipy>=1.3.2",
"matplotlib>=3.1.2",
"markdown2>=2.0.0",
"pillow>=5.4.0"
],
"extras_require": {
"pre-commit": [
"pre-commit>=1.11.0",
"yapf==0.32.0"
],
"notebook": [
"jupyter"
],
"tests": [
"pytest>=5.1.0",
"pytest-regressions>=2.4.2",
"pandas>=1.1.0",
"testbook",
"ipykernel"
],
"doc": [
"sphinx==4.2.0",
"myst_parser==0.15.2",
"nbsphinx==0.8.7"
]
},
"entry_points": {
"console_scripts": [
"sportran-analysis=sportran.analysis:main",
"sportran-gui=sportran_gui.main:run"
]
},
"package_data": {
"sportran": ["plotter/styles/*.mplstyle"]
},
"gui_version" : "0.1.2",
"credits" : "developed at SISSA, Via Bonomea, 265 - 34136 Trieste ITALY"
}