-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
54 lines (46 loc) · 1.24 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "simple-smartsheet"
version = "0.5.0"
description = "Python library to interact with Smartsheet API"
authors = ["Dmitry Figol <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dmfigol/simple-smartsheet"
repository = "https://github.com/dmfigol/simple-smartsheet"
keywords = ["smartsheet"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = ">=3.6.1"
marshmallow = "^3"
requests = "*"
attrs = "*"
cattrs = "*"
mypy-extensions = "*"
aiohttp = "*"
pandas = { version = ">=1", optional = true }
[tool.poetry.dev-dependencies]
flake8 = "*"
mypy = "*"
black = { version = "*", allow-prereleases = true }
isort = "*"
pytest = "*"
pytest-asyncio = "*"
bpython = "*"
pdbpp = "*"
vcrpy = "*"
pytest-recording = "*"
"ruamel.yaml" = "*"
pytest-pycharm = "*"
[tool.poetry.extras]
pandas = ["pandas"]