-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.07 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
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[project]
name = "menza_cli"
version = "0.1.2"
authors = [
{ name="Petr Laštovička", email="[email protected]" },
]
description = "Dish menus for CTU cafeterias - nice CLI interface"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["menza", "cafeteria", "ctu", "cvut", "Prague", "cli"]
requires-python = ">=3.10"
classifiers = [
"Environment :: Console :: Curses",
"Framework :: Pytest",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Natural Language :: Czech",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"click>=8.1.3",
"cryptography>=39.0.0",
"pytest>=7.2.0",
"requests>=2.28.1",
"result>=0.9.0",
]
[project.urls]
"Homepage" = "https://github.com/Lastaapps/menza-cli"
"Bug Tracker" = "https://github.com/Lastaapps/menza-cli/issues"
[project.scripts]
menza = "menza_cli.__main__:main"