forked from HIPS/autograd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (73 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=44"]
build-backend = "setuptools.build_meta"
[project]
name = "autograd"
version = "1.6.3"
description = "Efficiently computes derivatives of numpy code."
readme = "README.md"
license = {file = "license.txt"}
authors = [
{name = "Dougal Maclaurin", email = "[email protected]"},
{name = "David Duvenaud", email = "[email protected]"},
{name = "Matthew Johnson", email = "[email protected]"},
{name = "Jamie Townsend", email = "[email protected]"},
]
maintainers = [
{name = "Jamie Townsend", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = [
"Automatic differentiation",
"backpropagation",
"gradients",
"machine learning",
"optimization",
"neural networks",
"Python",
"Numpy",
"Scipy",
]
dependencies = [
"numpy>=1.12",
"six",
"future>=0.15.2; python_version < '3'",
]
[project.optional-dependencies]
scipy = [
"scipy",
]
[tool.coverage.run]
source = ["autograd"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
addopts = "--color=yes --junitxml=junit-report.xml"
[tool.ruff]
extend-exclude = []
extend-ignore = ["E731"]
extend-select = ["I", "W"]
line-length = 109
[tool.setuptools]
packages=[
"autograd",
"autograd.numpy",
"autograd.scipy",
"autograd.scipy.stats",
"autograd.misc",
]