-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pangolinn"
version = "0.0.1"
authors = [
{ name="Marco Gaido", email="[email protected]" },
{ name="Sara Papi", email="[email protected]" }
]
description = "Helper library with tests that check common issues in neural network models."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Testing :: Unit"
]
dependencies = [
"torch",
"pytest"
]
[project.urls]
"Homepage" = "https://github.com/hlt-mt/pangolinn"
"Bug Tracker" = "https://github.com/hlt-mt/pangolinn/issues"
[project.optional-dependencies]
# numpy avoid warnings when using torch convolutions in tests
dev = ["flake8", "numpy"]
release = ["build", "twine", "sphinx", "sphinx-rtd-theme"]
[tool.setuptools.packages.find]
where = ["src"]