-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (39 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
52 lines (39 loc) · 897 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
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "ceeder"
version = "1.2.0"
description = "Library for working with CDR files and analytics."
authors = ["max thomas <max@qntfy.com>"]
license = "MIT"
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/qntfy/ceeder"
homepage = "https://github.com/qntfy/ceeder"
keywords = ['ceeder', 'cdr']
packages = [
{ include = "ceeder", from = "src" },
]
[tool.poetry.dependencies]
python = "*"
falcon = "^2.0.0"
jsonschema = "^3.2.0"
[tool.poetry.dev-dependencies]
pytest = "^3.6"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"