-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.38 KB
/
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
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.poetry]
name = "daily-grind"
version = "0.1.0"
description = "Easily open all the apps you use every day"
authors = ["W. Augusto Andreoli <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/andreoliwa/daily-grind"
classifiers = [
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
[tool.poetry.scripts]
dg = "daily_grind.cli:main"
[tool.poetry.urls]
"Changelog" = "https://github.com/andreoliwa/daily-grind/blob/master/CHANGELOG.rst"
"Issue Tracker" = "https://github.com/andreoliwa/daily-grind/issues"
[tool.poetry.dependencies]
python = "^3.9"
click = "*"
dynaconf = "*"
appdirs = "*"
invoke = "*"
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"