-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hcai-discover"
authors = [
{name = "Dominik Schiller", email = "[email protected]"},
{name = "Tobias Hallmen", email = "[email protected]"},
{name = "Tobias Baur", email = "[email protected]"},
{name = "Fabio Hellmann", email = "[email protected]"}
]
description = "DISCOVER is a lightweight server designed to create and manage machine learning jobs based on requests."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["DISCOVER", "NOVA", "machine learning"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
"flask==3.0.0",
"hcai-discover-utils",
"waitress",
"python-dotenv",
"psutil",
"numpy >= 1.24, < 2.0",
"toml"
]
dynamic = ["version"]
[tool.setuptools.packages.find]
#where = ["src"] # list of folders that contain the packages (["."] by default)
#include = ["my_package*"] # package names should match these glob patterns (["*"] by default)
exclude = ["*tests*", "local", "cache", "cml", "data", "log", "tmp"] # exclude packages matching these glob patterns (empty by default)
[tool.setuptools.dynamic]
version = {attr = "discover.__version__"}
[project.urls]
Documentation = "https://hcmlab.github.io/nova-server/docbuild/"
Repository = "https://github.com/hcmlab/discover"
[project.scripts]
discover = "discover.app:_run"