-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
39 lines (34 loc) · 981 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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "adv-lib"
dynamic = ["version"]
authors = [
{ name = "Jerome Rony", email = "[email protected]" },
]
description = "Library of various adversarial attacks resources in PyTorch"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=1.8.0",
"torchvision>=0.9.0",
"tqdm>=4.48.0",
"visdom>=0.1.8",
]
[tool.setuptools]
packages = ["adv_lib"]
[tool.setuptools.dynamic]
version = { attr = "adv_lib.__version__" }
[project.optional-dependencies]
test = ["scikit-image", "pytest"]
[project.urls]
Repository = "https://github.com/jeromerony/adversarial-library.git"