-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.2 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
[project]
name = "sequel-core"
version = "0.0.2"
authors = [
{ name = "Nikolaos Dimitriadis", email = "[email protected]" },
]
description = "A Continual Learning Framework for both Jax and PyTorch."
keywords = ["continual learning", "pytorch", "jax"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["sequel*"]
exclude = ["tests*"]
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.urls]
repository = "https://github.com/nik-dim/sequel"
homepage = "https://nik-dim.github.io/sequel-site/"
documentation = "https://nik-dim.github.io/sequel-site/"
issue-tracker = "https://github.com/nik-dim/sequel/issues"
releases = "https://github.com/nik-dim/sequel/releases"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"