-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"protonet" = "protonet"}
[project]
name = "protonet"
authors = [
{name = "Ömer BORHAN", email = "borhano.f.42@gmail.com"},
]
description = "Implementation of Prototypical Networks for Few-shot Learning"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["lightning", "few shot learning", "meta learning"]
license = {text = "MIT"}
classifiers = [
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"torch",
"lightning",
]
dynamic = ["version"]