generated from nyu-software-engineering/python-package-exercise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (31 loc) · 1.24 KB
/
pyproject.toml
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
35
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "riceinfo"
description = "A fun package for your rice needs. Print out riceballs, rice puns, rice history, and country's main rice types!"
version = "0.1.0"
authors = [
{ name="Kei Oshima", email="[email protected]" },
{ name="Ryan Horng", email="[email protected]"},
{ name="Andrew Huang", email="[email protected]"},
{ name="Richard Qu", email="[email protected]"}
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["python", "package", "build", "rice", "history", "pun", "ascii"]
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-riceballz"
"Repository" = "https://github.com/software-students-fall2023/3-python-package-exercise-riceballz.git"
"Bug Tracker" = "https://github.com/software-students-fall2023/3-python-package-exercise-riceballz/issues"
[project.scripts]
riceinfo = "riceinfo.__main__:main"