-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 1.89 KB
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
[build-system]
requires = [
"setuptools>=62.1",
"setuptools_scm[toml]>=8.0.1",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "PyThea"
description = "PyThea: A software package to reconstruct the 3D structure of CMEs and shock waves"
requires-python = ">=3.11"
readme = "README.md"
license = { file = "LICENSE.md" }
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
]
keywords=['science', 'solar physics', 'solar', 'coronal mass ejections', 'shock waves', 'EUV waves']
authors = [
{ name = "Athanasios Kouloumvakos", email = "athkouloumvakos@gmail.com" },
]
dependencies = [
"sunpy>=7.0.1",
"pandas",
"scipy",
"matplotlib",
"aiapy",
"numexpr",
"streamlit",
"seaborn",
"pyvista",
"sunpy_soar",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://www.pythea.org"
Documentation = "https://www.pythea.org/en/latest/"
"Source Code" = "https://github.com/AthKouloumvakos/PyThea"
Download = "https://pypi.org/project/PyThea"
[project.optional-dependencies]
all = ["pythea"]
tests = [
"jplephem",
"pooch",
"pytest",
"pytest-astropy",
"pytest-sugar",
"pytest-mpl"
]
docs = [
"pooch",
"plotly",
"jplephem",
"sphinx>=6.0.0",
"sphinx-automodapi",
"sphinx-gallery",
"jupyter_sphinx",
"sphinx-rtd-theme",
"numpydoc"
]
[tool.setuptools]
zip-safe = false
include-package-data = true
platforms = ["any"]
provides = ["PyThea"]
license-files = ["LICENSE.md"]
[tool.setuptools.packages.find]
include = ["PyThea*"]
[tool.setuptools_scm]
version_file = "PyThea/_version.py"
[project.scripts]
pythea = "PyThea.pythea_cli:main"