-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (50 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
61 lines (50 loc) · 1.42 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
[build-system]
requires = ["setuptools>=79.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "untappd-data-parser"
version = "0.1.0"
description = "Parse and analyze Untappd beer check-in data exports"
readme = "README.md"
authors = [
{name = "Clay Dugo", email = "claydugo@gmail.com"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
keywords = ["untappd", "beer", "data-analysis", "csv", "json"]
requires-python = ">=3.12"
dependencies = []
[project.urls]
Homepage = "https://github.com/claydugo/untappd-data-parser"
Issues = "https://github.com/claydugo/untappd-data-parser/issues"
[project.scripts]
untappd-parser = "untappd_parser.cli:main"
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
"python-minifier>=3.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
untappd-data-parser = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
[tool.pixi.tasks]