-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.33 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
36
37
38
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrizz"
description = "A package where users can receive pick up lines, rate pickup lines and add pickup lines"
version = "1.1.2"
authors = [
{ name="Aditya Pandhare", email="[email protected]" },
{ name="Anzhelika Nastashchuk", email="[email protected]" },
{ name="Baani Pasrsija", email="[email protected]" },
{ name="Zander Chen", email="[email protected]" }
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["python", "package", "build", "pyrizz", "pickup-line"]
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-experientia"
"Repository" = "https://github.com/software-students-fall2023/3-python-package-exercise-experientia.git"
"Bug Tracker" = "https://github.com/software-students-fall2023/3-python-package-exercise-experientia/issues"
[project.scripts]
pyrizz = "pyrizz.__main__:main"
[tool.setuptools.package-data]
"pyrizz" = ["data/*"]