-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Daniel Fletcher
# Harvard CS50P 2024
# Final Project
# pyproject.toml
# Package configuration file
# Modeled after packaging tutorial found at:
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# Use setuptools for building
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
# Basic project attributes
[project]
name = "color50"
version = "1.0.1"
authors = [
{ name="Daniel Fletcher", email="dfletcher-mail@proton.me" }
]
description = "A lightweight Python package for colorful output at the command line."
readme = "README.md"
requires-python = ">=3.10"
# Project keywords (e.g., tags)
keywords = [
"color50",
"color",
"console",
"terminal",
"command line",
"CS50",
"CS50P"
]
# Project classifiers (e.g., categories)
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Console Fonts"
]
[project.urls]
GitHub = "https://github.com/danielthefletch/color50.git"
Documentation = "https://color50.readthedocs.io/en/latest/"
"CS50P Course Website" = "https://cs50.harvard.edu/python/2022/"
[tool.setuptools]
packages = [ "color50" ]
[tool.setuptools.package-dir]
color50 = "src/color50"
[tool.setuptools.package-data]
color50 = [ "*.json" ]