-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.52 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
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "benchlingapi"
version = "2.1.12"
description = "An unofficial python wrapper for the Benchling API"
authors = ["Justin Vrana <[email protected]>"]
homepage = "https://www.github.com/klavinslab/benchling-api"
repository = "https://pypi.org/project/benchlingapi/"
documentation = "http://klavinslab.org/benchling-api/"
readme = 'README.md'
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 4 - Beta"
]
[tool.poetry.dependencies]
python = "^3.5.2"
requests = "^2.22"
inflection = "^0.3.1"
urlopen = "^1.0"
bs4 = "^0.0.1"
marshmallow = "^3.2"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0", allows-prereleases = true, python = ">3.6"}
pytest = "^5.0"
pre-commit = "^1.17"
toml = "^0.10.0"
sphinx = "^2.1"
guzzle-sphinx-theme = "^0.7.11"
vcrpy = "^2.0"
keats = {version = "^0.2.27", python = ">3.6"}
sphinx_autodoc_typehints = {version = "^1.8", python = ">3.6"}
sphinx-bootstrap-theme = "^0.7.1"
recommonmark = "^0.6.0"
autodocsumm = "^0.1.11"
flake8 = "^3.7"
tox = "^3.14"
tox-conda = "^0.2.1"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"