Skip to content

Commit edcd958

Browse files
add pyproject.toml
1 parent 3c2c62e commit edcd958

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ CMakeLists.txt
44
build/
55
bin/
66
temp/
7-
pyproject.toml
87
__pycache__/
98
src/*.egg-info/*
109
dist/

pyproject.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "TensorArray"
7+
version = "0.0.1a"
8+
authors = [
9+
{ name="TensorArray-Creators", email="[email protected]" },
10+
]
11+
description = "A machine learning package"
12+
readme = "README.md"
13+
requires-python = ">=3.8"
14+
classifiers = [
15+
"Development Status :: 3 - Alpha",
16+
"Programming Language :: Python :: 3",
17+
"License :: OSI Approved :: MIT License",
18+
"Environment :: GPU :: NVIDIA CUDA :: 12",
19+
]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/BigNoobWasTaken/TensorArray-Python"
23+
Issues = "https://github.com/BigNoobWasTaken/TensorArray-Python/issues"

0 commit comments

Comments
 (0)