-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.32 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
[tool.poetry]
name = "pyrtable"
version = "0.10.2"
description = "Django-inspired library to interface with Airtable"
authors = ["Vilar da Camara Neto <vilarneto@gmail.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://pyrtable.readthedocs.io/"
repository = "https://github.com/vilarneto/pyrtable"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
]
[tool.poetry.dependencies]
python = "^3.8"
deprecated = "*"
requests = "^2.22.0"
simplejson = "^3.16.0"
pyyaml = ">=5.1,<7"
[tool.poetry.dev-dependencies]
ipython = "*"
sphinx = "^4.0.2"
twine = "^4.0.0"
click = ">=7.1.2,<9"
isort = "^5.10.1"
[tool.isort]
multi_line_output = 2
line_length = 120
known_local_folder = ["pyrtable"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[build-system]
requires = ["setuptools", "poetry_core>=1.0"]
build-backend = "poetry.core.masonry.api"