Skip to content

Commit b6ad7f8

Browse files
committed
proj: PyPI package
1 parent 3bf16b6 commit b6ad7f8

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

packaging/python/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
dist/
3+
*.egg-info/

packaging/python/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ExaPlot
2+
3+
The ExaPlot package is bundled with the standard library within its environment; users shouldn't download/install this package.

packaging/python/pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[build-system]
2+
requires = ["setuptools>=64", "setuptools_scm>=8"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "exaplot"
7+
readme = "README.md"
8+
classifiers = [
9+
"Development Status :: 4 - Beta",
10+
"Environment :: Other Environment",
11+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
12+
"Programming Language :: Python :: 3 :: Only",
13+
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: Implementation :: CPython",
15+
]
16+
dynamic = [
17+
"version",
18+
]
19+
20+
[project.urls]
21+
Repository = "https://github.com/bytemarx/exaplot"
22+
23+
[tool.setuptools_scm]
24+
root = "../.."

0 commit comments

Comments
 (0)