-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
63 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
52
53
54
55
56
57
58
59
60
61
62
[tool.pytest.ini_options]
pythonpath = "src"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vlbiplanobs"
version = "3.0a10"
description = "Observaiton Planner for VLBI observations"
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["astronomy", "astrophysics", "cosmology", "radio", "science", "observations", "planner", "coordinate"]
authors = [
{ name = "B. Marcote", email = "marcote@jive.eu" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
"numpy",
"astropy>=4.0.2",
"astroplan>=0.7",
"rich",
"rich_argparse",
"plotext",
"matplotlib",
"ortools"
]
[project.urls]
"Bug Reports" = "https://github.com/bmarcote/vlbi_calculator/issues"
"Source" = "https://github.com/bmarcote/vlbi_calculator/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"vlbiplanobs.data" = ["data/*"]
"stations" = ["data/stations_catalog.inp"]
"networks" = ["data/network_catalog.inp"]
"vlbiplanobs.gui.assets" = ["gui/assets/*"]
[project.scripts]
planobs = "vlbiplanobs.cli:cli"