forked from anvilco/python-anvil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (76 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
98 lines (76 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.poetry]
name = "python_anvil"
version = "1.0.0"
description = "Anvil API"
license = "MIT"
authors = ["Allan Almazan <[email protected]>"]
readme = "README.md"
homepage = "https://www.useanvil.com/"
documentation = "https://github.com/anvilco/python-anvil"
repository = "https://github.com/anvilco/python-anvil"
keywords = [
"anvil",
"api",
"pdf",
"signing",
]
classifiers = [
# Full list here: https://pypi.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"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",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.6.2"
click = "^7.0"
requests = "^2.25.0"
ratelimit = "^2.2.1"
tabulate = "^0.8.9"
pydantic = "^1.8.2"
[tool.poetry.dev-dependencies]
# Formatters
black = "=21.9b0"
isort = "=5.9.3"
# Linters
mypy = "*"
pydocstyle = "*"
pylint = "2.11.1"
# Testing
pytest = "6.2.5"
pytest-cov = "*"
pytest-describe = { git = "https://github.com/pytest-dev/pytest-describe", rev = "453aa9045b265e313f356f1492d8991c02a6aea6" } # use 2.0 when released
pytest-expecter = "^2.1"
pytest-random = "*"
freezegun = "*"
# Reports
coveragespace = {git = "https://github.com/jacebrowning/coverage-space-cli.git", rev = "c167484787a223227b1ad5393300f8ca2bafe7a2"}
# Documentation
mkdocs = "1.2.2"
pygments = "^2.5.2"
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
# Updating `ipython` any further will require a minimum Python of >=3.7
ipython = "^7.12.0"
pyinotify = {version = "^0.9.6", optional = true}
tox = "^3.21.2"
pre-commit = "^2.15.0"
[tool.poetry.scripts]
anvil = "python_anvil.cli:cli"
[tool.black]
# py39 not supported yet for `black`
target-version = ["py36", "py37", "py38"]
skip-string-normalization = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"