-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 931 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
[tool.poetry]
name = "SciDataLib"
version = "v0.4.0"
description = "Python library for development of SciData JSON-LD files"
authors = [
"Stuart Chalk <[email protected]>",
"Dylan Johnson <[email protected]>",
"Marshall McDonnell <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/chalklab/SciDataLib"
repository = "https://github.com/chalklab/SciDataLib"
keywords = ["scidata", "scidatalib"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.scripts]
scidatalib = "scidatalib.cli:cli"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.2.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.3.2"
flake8 = "^7.1.1"
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"