-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.22 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "DsoAcademicSoftware"
version = "0.1.2"
#dynamic = ["version",]
authors = [
{ name="Demitris Anastasiou", email="danastasiou@mail.ntua.gr" },
{ name="Xanthos Papanikolaou", email="xanthos@mail.ntua.gr" },
{ name="Vangelis Zacharis", email="vanzach@mail.ntua.gr" },
]
description = "."
readme = "README.md"
requires-python = ">=3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'scipy',
'cartopy',
'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"
argossimulator = "bin.argossimulator2: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/"]