-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (43 loc) · 915 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "adventofcode"
version = "0.0.1"
authors = [
{ name="Jeroen Van Goey", email="[email protected]" },
]
description = "My solutions to Advent of Code"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/BioGeek/adventofcode"
[build-system]
requires = ["setuptools>=65.6.3"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
src_paths = ["2017", "2018", "2019", "2020", "2021", "noxfile.py"]
[tool.black]
target_version = ['py310']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to this repository
| 2017
| 2018
)/
'''
[tool.mypy]
python_version = '3.10'