-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path#pyproject.toml
32 lines (28 loc) · 898 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openloss"
version = "0.0.1"
description = "Cost functions designed for open-set classification tasks, published in well-known peer-reviewed venues."
keywords = ["openloss", "open set", "open-set learning", "cost function"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"torch",
"pytest"
]
authors = [
{ name="Rafael Vareto", email="rafael@vareto.com.br" },
]
[project.urls]
Homepage = "https://github.com/rafaelvareto/maximal-entropy-loss"
Issues = "https://github.com/rafaelvareto/maximal-entropy-loss/issues"
[tool.setuptools]
zip-safe = false
package-dir = {"" = "openloss"}