-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
34 lines (28 loc) · 977 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
# © 2022-2024 Copyright SES AI
# Author: Daniel Cogswell
# Email: [email protected]
[project]
name = "NewareNDA"
dynamic = ["version"]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Daniel Cogswell", email = "[email protected]" }]
requires-python = ">=3.6"
classifiers = [ "Programming Language :: Python :: 3" ]
description = "Neware nda binary file reader."
dependencies = [
"pandas",
"importlib-metadata ~= 1.0 ; python_version < '3.8'"
]
[tool.setuptools.dynamic]
version = { attr = "NewareNDA.version.__version__" }
[project.scripts]
NewareNDA-cli = "NewareNDA.__main__:main"
[project.urls]
homepage = "https://github.com/Solid-Energy-Systems/NewareNDA"
tracker = "https://github.com/Solid-Energy-Systems/NewareNDA/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest", "pyarrow", "coveralls"]