-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.28 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
[project]
name = "bs-scheduler"
version = "1.0.0"
requires-python = ">=3.9"
description = "A PyTorch Dataloader compatible batch size scheduler library."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "George Stoica", email = "58839912+ancestor-mithril@users.noreply.github.com"},
]
maintainers = [
{ name = "George Stoica", email = "58839912+ancestor-mithril@users.noreply.github.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: BSD 3-Clause License", #Real
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
'deep learning',
'pytorch',
'batch size scheduler',
'dynamic batch size'
]
dependencies = [
"torch>=1.1.0",
]
[tool.setuptools.packages.find]
include = ["bs_scheduler"]
[project.urls]
Repository = "https://github.com/ancestor-mithril/bs-scheduler"
Issues = "https://github.com/ancestor-mithril/bs-scheduler/issues"
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
]
dev = [
"matplotlib",
"pytest",
"flake8"
]