-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "termtrack"
version = "0.8.0"
description = "Track Earth-orbiting satellites from your terminal"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{ name = "Torsten Rehn", email = "torsten@rehn.email" }
]
keywords = ["terminal", "track", "tracking", "satellite", "orbit", "iss"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"Pillow>=2.7.0",
"pyshp>=1.2.1",
"requests>=2.0.0",
"skyfield>=1.45",
]
[project.urls]
Homepage = "https://github.com/trehn/termtrack"
Repository = "https://github.com/trehn/termtrack"
Issues = "https://github.com/trehn/termtrack/issues"
[project.scripts]
termtrack = "termtrack.cli:main"
[tool.setuptools.packages.find]
include = ["termtrack*"]
[tool.setuptools.package-data]
termtrack = [
"data/de421.bsp",
"data/earth.jpg",
"data/mars.jpg",
"data/moon.jpg",
"data/ne_110m_land.dbf",
"data/ne_110m_land.shp",
"data/ne_110m_land.shx",
]