-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
135 lines (130 loc) · 3.91 KB
/
Copy pathpyproject.toml
File metadata and controls
135 lines (130 loc) · 3.91 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
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
126
127
128
129
130
131
132
133
134
135
# 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.5.0"
description = "PHOEBE: modeling and analysis of eclipsing binary stars"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Andrej Prša", email = "aprsa@villanova.edu" },
{ name = "Kyle Conroy", email = "kyle.conroy@villanova.edu" },
{ name = "Angela Kochoska", email = "angela.kochoska@villanova.edu" },
{ name = "Martin Horvat", email = "martin.horvat@fmf.uni-lj.si" },
{ name = "Dave Jones", email = "djones@iac.es" },
{ name = "Michael Abdul-Masih", email = "michael.abdul-masih@eso.org" },
{ name = "Bert Pablo", email = "hpablo@aavso.org" },
{ name = "Joe Giammarco", email = "giammarc@eastern.edu" },
]
maintainers = [
{ name = "Kyle Conroy", email = "kyle.conroy@villanova.edu" },
{ name = "Andrej Prša", email = "aprsa@villanova.edu" },
]
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",
"ndpolator == 1.3.0",
"tqdm",
"corner",
"requests",
"python-socketio",
"flask",
"flask-cors",
"flask-socketio",
"gevent",
"gevent-websocket",
]
[project.urls]
homepage = "https://phoebe-project.org"
repository = "https://github.com/phoebe-project/phoebe2"
documentation = "https://phoebe-project.org/docs"
[build-system]
requires = [
"setuptools>=68",
"wheel",
"numpy>=1.26,<2.3",
]
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.cli",
"phoebe.features",
"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",
]
[project.scripts]
phoebe-admin = "phoebe.cli.admin:main"