-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 1.35 KB
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
62
63
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "damn"
version = "0.0.2"
description = "Monitor dam gauges and send an alert to a mobile device if certain levels are reached."
readme = "README.md"
requires-python = ">=3.13"
license = {file = "LICENSE"}
authors = [
{ name = "Bryce Jasmer", email = "bryce@jasmer.com" },
]
# TODO: put in some project specific keywords for searching on PyPI
# keywords = ["one", "two"]
#
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ #! Update me
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click",
"requests",
]
[project.urls]
"Homepage" = "https://gitlab.com/b-jazz/damn"
"Bug Tracker" = "https://gitlab.com/b-jazz/damn/-/issues"
[project.scripts]
damn = "damn.damn_main:main"
[tool.black]
# https://github.com/psf/black
target-version = ["py313"]
line-length = 120
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = "py313"
line_length = 120