-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1018 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["libs"]
[project]
name = "grist-scripts"
version = "1.0.0"
authors = [
{ name = "Charlie Powell", email = "cdp1337@evalagency.com" },
]
description = "Script helpers for Grist"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
# See https://pypi.org/classifiers/ for full list
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
]
dependencies = [
"flask>=3.1.0",
"requests>=2.31.0",
"gunicorn>=20.1.0",
]
#[project.optional-dependencies]
#dev = [
# "coverage>=5.0.3",
#]
#[project.urls]
#Homepage = "https://github.com/cdp1337/sys-info-api"
#Issues = "https://github.com/cdp1337/sys-info-api/issues"
#[project.scripts]
#generate_test_data = "sys_info_api.bin.generate_test_data:run"