-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (37 loc) · 966 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "porthouse"
version = "0.1"
description = "Groundstation and mission control software"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [ "sample", "asd" ]
authors = [
{name= "Petri Niemelä", email="[email protected]"},
]
maintainers = [
{name= "Petri Niemelä", email="[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3 License",
"Operating System :: OS Independent",
]
dependencies = [
"aiormq",
"amqp",
"skyfield",
"ptpython",
"argcomplete",
"PyYAML"
]
[project.urls]
"Homepage" = "https://github.com/aaltosatellite/porthouse"
[project.scripts]
porthouse="porthouse.entry:main"
[tool.setuptools]
packages = ["porthouse", "porthouse.core", "porthouse.mcs", "porthouse.gs"]
package-dir = {porthouse = "."}