Skip to content

Commit 4b7d6a8

Browse files
committed
Small fix
1 parent 13a5d2e commit 4b7d6a8

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ notebooks/mnist1d
1414
__pycache__
1515
.vscode
1616
*~
17+
18+
dist/*

pyproject.toml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,22 @@ requires-python = ">=3.7"
1717
keywords = ["dataset", "mnist", "machine learning", "deep learning", "1D"]
1818
license = {text = "Apache-2.0"}
1919
classifiers = [
20-
"License :: OSI Approved :: Apache 2.0 License",
20+
"License :: OSI Approved :: Apache Software License",
2121
"Programming Language :: Python",
22-
"Framework :: Numpy",
23-
"Framework :: Scipy",
2422
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
29+
"Intended Audience :: Science/Research"
2530
]
2631
dependencies = [
27-
'requests',
28-
'numpy',
29-
'matplotlib',
30-
'scipy'
32+
"requests",
33+
"numpy",
34+
"matplotlib",
35+
"scipy"
3136
]
3237
dynamic = ["version"]
3338

@@ -48,4 +53,4 @@ packages = ["mnist1d"]
4853
Homepage = "https://github.com/greydanus/mnist1d"
4954

5055
# [project.scripts]
51-
# my-script = "my_package.module:function"
56+
# my-script = "my_package.module:function"

0 commit comments

Comments
 (0)