source: ammosreader/pyproject.toml@ 726729c

AmmosSource guix
Last change on this file since 726729c was 9dc7beb, checked in by Enrico Schwass <ennoausberlin@…>, 2 years ago

path to logger file added

  • Property mode set to 100644
File size: 714 bytes
Line 
1[build-system]
2requires = ["poetry-core>=1.0.7"]
3build-backend = "poetry.core.masonry.api"
4
5[tool.poetry]
6name = "ammosreader"
7version = "0.0.4"
8description = "A package to manage ammos datastreams"
9authors = ["See Contributors"]
10homepage = "https://gitlab.kokyou.de/enno/ammosreader"
11repository = "https://gitlab.kokyou.de/enno/ammosreader"
12license = "MIT"
13readme = "README.md"
14packages = [
15 { include = "ammosreader" }
16]
17
18include = [
19 {path = 'tests/*.py'},
20 {path = 'scripts/*.py'},
21 {path = 'sampleData/*.csv'},
22 {path = 'ammos_logger.conf'}
23]
24[tool.poetry.scripts]
25iqdw_reader = 'scripts.iqdw_reader:main'
26pdw_reader = 'scripts.pdw_reader:main'
27
28[tool.poetry.dependencies]
29numpy = "~1.23.2"
30
Note: See TracBrowser for help on using the repository browser.