-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
executable file
·52 lines (47 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "exostriker"
version = "0.91.0"
authors = [
{ name="Trifon Trifonov", email="[email protected]" },
{ name="Matheus J. Castro", email="[email protected]" },
]
description="This is the 'Transit and Radial velocity Interactive Fitting tool for Orbital analysis and N-body simulations: The Exo-Striker'"
readme = "README.md"
requires-python = ">=3.8"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
dependencies = [
"numpy >= 1.21,<2.0",
"scipy >= 1.2.1",
"matplotlib >= 3.3.1",
"formlayout == 1.2.0",
"PyQt6",
"jupyter",
"jupyter-client",
"ipykernel",
"qtconsole",
"pathos >= 0.2.5",
"emcee >= 3.0.2",
"celerite >= 0.3.1",
"batman-package >= 2.4.8",
"ttvfast >= 0.3.0",
"wotan >= 1.7",
"openai",
"desktop_file",
"pywin32 ; sys_platform == 'win32'"
]
[project.scripts]
exostriker = "exostriker.gui:main"
exostriker-desktop-create = "exostriker.desktop_entry:create"
exostriker-desktop-remove = "exostriker.desktop_entry:remove"
[project.urls]
"homepage" = "https://exostriker-manual.readthedocs.io/"
"repository" = "https://github.com/3fon3fonov/exostriker"
"Bug Tracker" = "https://github.com/3fon3fonov/exostriker/issues"