We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6251e5e commit 500befbCopy full SHA for 500befb
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
4
5
[project]
6
name = 'aoc'
7
-dynamic = ['version']
+version = '2.0.0'
8
description = 'Advent of Code programming puzzles by Rudy Puig.'
9
license = { file = 'LICENSE.txt' }
10
readme = 'README.md'
@@ -27,17 +27,13 @@ test = [
27
28
[tool.setuptools]
29
package-dir = {'' = 'src'}
30
-include-package-data = true
31
32
[tool.setuptools.packages.find]
33
where = ['src']
34
-include = ['aoc*']
+include = ['aoc']
35
exclude = ['docs', 'tests']
36
namespaces = false
37
38
-[tool.setuptools.dynamic]
39
-version = {attr = 'aoc.__version__'}
40
-
41
[tool.mypy]
42
check_untyped_defs = true
43
disallow_any_generics = true
0 commit comments