-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
60 lines (52 loc) · 1.81 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mnist1d"
authors = [
{name = "Sam Greydanus", email = "[email protected]"},
{name = "Peter Steinbach", email = "[email protected]"},
{name = "Karim", email = "[email protected]"},
{name = "Dmitry Kobak", email= "[email protected]"},
{name = "Jakob Jordan", email= "[email protected]"}
]
description = "A 1D analogue of the MNIST dataset for measuring spatial biases and answering Science of Deep Learning questions"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["dataset", "mnist", "machine learning", "deep learning", "1D"]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
dependencies = [
"requests",
"numpy",
"matplotlib",
"scipy"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest"]
all = ["torch","notebook"]
[tool.setuptools]
packages = ["mnist1d"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
# [tool.setuptools.packages.find]
# where = ["mnist1d"]
# [tool.setuptools.exclude-package-data]
# mnist1d = ["notebooks/*", "static/*", "*pkl"]
[project.urls]
Homepage = "https://github.com/greydanus/mnist1d"
# [project.scripts]
# my-script = "my_package.module:function"