-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.28 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
[build-system]
requires = ["setuptools>=0.62.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cfdp-py"
description = "Library for high level CCSDS File Delivery Protocol (CFDP) components"
readme = "README.md"
version = "0.1.1"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
{name = "Robin Mueller", email = "[email protected]"}
]
keywords = ["ccsds", "space", "communication", "packet", "file-transfer"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering"
]
dependencies = [
"spacepackets>=0.23.0, <0.25",
"crcmod~=1.7",
"deprecation~=2.1",
]
[project.optional-dependencies]
test = [
"pyfakefs~=4.5",
]
[project.urls]
"Homepage" = "https://github.com/us-irs/cfdp-py"
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F401"]