-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 874 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
37
38
39
40
41
[tool.poetry]
name = "PyCompanyData"
version = "0.1.3"
description = "A Python client library for interacting with the Codat API"
authors = ["Peter Simpson <peter_joseph_simpson@hotmail.com>"]
packages = [
{ include = "pycompanydata", from= "src"},
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
pydantic = "^1.9.2"
Sphinx = "^5.1.1"
sphinx-rtd-theme = "^1.0.0"
types-toml = "^0.10.8.5"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.6.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
coverage = "^6.4.4"
pre-commit = "^2.20.0"
mypy = "^0.971"
types-requests = "^2.28.8"
bandit = "^1.7.4"
[tool.poetry.group.dev.dependencies]
toml = "^0.10.2"
[[tool.poetry.source]]
name = "pp"
url = "https://peterprivatepypi.xyz/"
default = false
secondary = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"