-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 981 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
[tool.poetry]
name = "tinyfilemanager"
version = "0.2.0"
description = "Python Client / SDK for tinyfilemanager"
authors = ["hexatester <hexatester@protonmail.com>"]
readme = "README.md"
keywords = ["tinyfilemanager"]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Communications",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.6.1"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.9.0"
pylint = "^2.7.2"
mypy = "^0.812"
black = "^20.8b1"
pytest-cov = "^2.11.1"
pre-commit = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"