-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.32 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
[tool.black]
line-length = 79
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.poetry]
name = "scale-nucleus"
version = "0.1.14"
description = "The official Python client library for Nucleus, the Data Platform for AI"
license = "MIT"
authors = ["Scale AI Nucleus Team <nucleusapi@scaleapi.com>"]
readme = "README.md"
homepage = "https://scale.com/nucleus"
repository = "https://github.com/scaleapi/nucleus-python-client"
documentation = "https://dashboard.scale.com/nucleus/docs/api"
packages = [{include="nucleus"}]
[tool.poetry.dependencies]
python = "^3.5.2"
requests = "^2.23.0"
tqdm = "^4.41.0"
dataclasses = { version = "^0.7", python = "^3.6.1, <3.7" }
aiohttp = "^3.7.4"
nest-asyncio = "^1.5.1"
[tool.poetry.dev-dependencies]
poetry = "^1.1.5"
pytest = "^6.1.2"
pylint = "^2.6.2"
black = "^20.8b1"
flake8 = "^3.9.1"
mypy = "^0.812"
coverage = "^5.5"
pre-commit = "^2.12.1"
[tool.pytest.ini_options]
markers = [
"integration: marks tests as slow (deselect with '-m \"not integration\"')",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"