-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 784 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "wordlist"
author = "matt wartell"
author-email = "matt.wartell@gmail.com"
home-page = "https://github.com/mwartell/wordlist"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description-file = "README.md"
requires-python= ">=3.6"
[tool.flit.sdist]
exclude = [
".github",
".gitignore",
"stubs",
]
[tool.flit.metadata.requires-extra]
dev = [
"black",
"flake8",
]
test = [
"pytest",
]
[tool.flit.scripts]
wordlist = "wordlist.__main__:main"
xkcd-pass = "wordlist.xkcd_pass:main"