-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 981 Bytes
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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "nxopentse"
version = "0.0.1a24"
authors = [
{ name="theScriptingEngineer", email="nxopen@theScriptingEngineer.com" },
]
maintainers = [
{ name="theScriptingEngineer", email="nxopen@theScriptingEngineer.com" },
]
description = "An NXOpen helper package to reuse code in scripts, in order to avoid having all the underlying code in the journals itself."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
[project.urls]
Documentation = "https://nxopentsedocumentation.theScriptingEngineer.com"
Repository = "https://github.com/theScriptingEngineer/nxopentse"
Issues = "https://github.com/theScriptingEngineer/nxopentse/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"