-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 912 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "my-school-menus"
dependencies = [
"icalendar~=5.0.11",
"requests>=2.31,<2.33"
]
dynamic = ["version"]
requires-python = ">=3.9"
authors = [
{ name="Andrew R. DeFilippis", email="[email protected]" },
]
description = "A package for interacting with My School Menus."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["api", "school", "lunch", "menu", "calendar"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.hatch.version]
path = "my_school_menus/__meta__.py"
[project.optional-dependencies]
test = [
"pytest~=7.4.3",
]
[project.urls]
Homepage = "https://github.com/andrewdefilippis/my_school_menus"
Issues = "https://github.com/andrewdefilippis/my_school_menus/issues"