forked from hminsky2002/3-python-package-exercise-liatha3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "babPy"
description = "A baby language python package"
version = "0.0.5"
authors = [
{ name="Harry Minksy", email="harry.minsky@gmail.com" },
{ name="Athena Leong", email="ayl2015@nyu.edu"},
{ name="Lianna Poblete", email="lnp2016@nyu.edu"}
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["python", "package", "build", "tutorial"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/software-students-fall2023/3-python-package-exercise-liatha3"
"Repository" = "https://github.com/software-students-fall2023/3-python-package-exercise-liatha3.git"
"Bug Tracker" = "https://github.com/software-students-fall2023/3-python-package-exercise-liatha3/issues"
[project.scripts]
bapy = "bapy.__main__:main"