-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.2 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "DsoAcademicSoftware"
version = "0.1.2"
#dynamic = ["version",]
authors = [
{ name="Demitris Anastasiou", email="[email protected]" },
{ name="Xanthos Papanikolaou", email="[email protected]" },
{ name="Vangelis Zacharis", email="[email protected]" },
]
description = "."
readme = "README.md"
requires-python = ">=3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'scipy',
'basemap',
'basemap-data-hires',
'attotime'
]
[project.urls]
Repository = "https://github.com/DSOlab/AcademicSoftware"
[project.scripts]
dso_groundtrack = "bin.groundtrack:main"
dso_skyplot = "bin.skyplot:main"
dso_orbit3d = "bin.orbit3d:main"
dso_sp32elements = "bin.sp32elements:main"
dso_sp3interpolate= "bin.sp3_interpolate:main"
dso_pp = "bin.pp:main"
# Specify the packages/modules
[tool.hatch.build]
include = ["dsoclasses/", "bin/"]
[tool.hatch.build.targets.sdist]
include = ["dsoclasses/", "bin/"]
[tool.hatch.build.targets.wheel]
include = ["dsoclasses/", "bin/"]