-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (53 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "zum"
version = "0.3.0"
description = "Stop writing scripts to interact with your APIs. Call them as CLIs instead."
license = "MIT"
authors = ["Daniel Leal <dlleal@uc.cl>"]
maintainers = ["Daniel Leal <dlleal@uc.cl>"]
readme = "README.md"
homepage = "https://zum.daleal.dev/"
repository = "https://github.com/daleal/zum"
documentation = "https://zum.daleal.dev/docs/"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "zum" },
]
exclude = [
".github",
".flake8",
".pylintrc",
"mypy.ini",
".coveragerc",
"Makefile",
"scripts",
"tests"
]
[tool.poetry.dependencies]
python = "^3.6"
tomlkit = "^0.7.0"
httpx = ">= 0.16.1, ^0.17.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
isort = "^5.6.4"
mypy = "^0.790"
pylint = "^2.6.0"
pytest = "^6.1.1"
pytest-cov = "^2.10.1"
[tool.poetry.plugins."console_scripts"]
zum = "zum.cli.core:dispatcher"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/daleal/zum/issues"