This repository was archived by the owner on Sep 20, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.23 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
[tool.poetry]
name = "random-standup"
version = "1.0.0"
description = "Standup Randomizer"
authors = ["jidicula <johanan@forcepush.tech>"]
license = "BSD 3-Clause License"
readme = "README.md"
homepage = "https://github.com/jidicula/random-standup-py"
repository = "https://github.com/jidicula/random-standup-py"
documentation = "https://github.com/jidicula/random-standup-py"
keywords = ["agile", "standup"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Office/Business"
]
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| \.env
| build
| dist
| \.mypy_cache
)\
'''
[tool.poetry.scripts]
standup = "random_standup.standup:standup"
[tool.poetry.dependencies]
python = "^3.7"
tomlkit = "^0.7.0"
click = ">=7.1.2,<9.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^21.9b0"
pre-commit = "^2.15.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"