-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
125 lines (121 loc) · 3.76 KB
/
pyproject.toml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# PHOEBE build specification
#
# Refer to the following document for specification:
# https://packaging.python.org/en/latest/specifications/
#
# Key specification is given here:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#declaring-project-metadata
#
# Classifier strings are given here:
# https://pypi.org/classifiers/
[project]
name = "phoebe"
version = "2.4.17"
description = "PHOEBE: modeling and analysis of eclipsing binary stars"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Andrej Prša", email = "[email protected]" },
{ name = "Kyle Conroy", email = "[email protected]" },
{ name = "Angela Kochoska", email = "[email protected]" },
{ name = "Martin Horvat", email = "[email protected]" },
{ name = "Dave Jones", email = "[email protected]" },
{ name = "Michael Abdul-Masih", email = "[email protected]" },
{ name = "Bert Pablo", email = "[email protected]" },
{ name = "Joe Giammarco", email = "[email protected]" },
]
maintainers = [
{ name = "Kyle Conroy", email = "[email protected]" },
{ name = "Andrej Prša", email = "[email protected]" },
]
keywords = [
"phoebe",
"science",
"astronomy",
"astrophysics",
"binary stars",
"eclipsing binary stars",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Programming Language :: C++",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces"
]
dependencies = [
"numpy",
"scipy",
"astropy",
"pytest",
"tqdm",
"corner",
"requests",
"python-socketio",
"flask",
"flask-cors",
"flask-socketio",
"gevent",
"gevent-websocket",
]
[project.urls]
homepage = "http://phoebe-project.org"
repository = "https://github.com/phoebe-project/phoebe2"
documentation = "http://phoebe-project.org/docs"
[build-system]
requires = ["setuptools", "numpy", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"phoebe",
"phoebe.parameters",
"phoebe.parameters.solver",
"phoebe.parameters.figure",
"phoebe.frontend",
"phoebe.frontend.default_bundles",
"phoebe.constraints",
"phoebe.dynamics",
"phoebe.distortions",
"phoebe.algorithms",
"phoebe.atmospheres",
"phoebe.atmospheres.tables.extinction",
"phoebe.atmospheres.tables.passbands",
"phoebe.atmospheres.tables.wd",
"phoebe.lib",
"phoebe.backend",
"phoebe.solverbackends",
"phoebe.solverbackends.ebai",
"phoebe.solverbackends.knn",
"phoebe.utils",
"phoebe.helpers",
"phoebe.pool",
"phoebe.dependencies",
"phoebe.dependencies.autofig",
"phoebe.dependencies.nparray",
"phoebe.dependencies.distl",
"phoebe.dependencies.crimpl",
"phoebe.dependencies.unitsiau2015",
"phoebe.dependencies.ligeor",
"phoebe.dependencies.ligeor.ebai",
"phoebe.dependencies.ligeor.ebai.database",
"phoebe.dependencies.ligeor.eclipse",
"phoebe.dependencies.ligeor.models",
"phoebe.dependencies.ligeor.utils",
]
script-files = [
"client-server/phoebe-server",
"client-server/phoebe-autofig",
]