-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (26 loc) · 870 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
[tool.poetry]
name = "taskminal"
version = "0.5"
description = "A CLI task list / time tracker powered by SQLite"
authors = ["JustADataConstruct"]
license = "MIT"
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Topic :: Utilities']
readme="README.md"
keywords= ['sqlite','time tracker','to-do','list']
repository = 'https://github.com/JustADataConstruct/Taskminal'
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
vermin = "^1.3.1"
flake8 = "^4.0.1"
[tool.poetry.scripts]
taskminal='taskminal.main:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"