forked from wagtail-nest/wagtail-airtable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.24 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
[tool.poetry]
name = "wagtail-airtable"
version = "0.2.2"
description = "Sync data between Wagtail and Airtable"
readme = "README.rst"
authors = ["Kalob Taulien <kalob.taulien@torchbox.com>"]
homepage = "https://github.com/wagtail/wagtail-airtable"
repository = "https://github.com/wagtail/wagtail-airtable"
documentation = "https://github.com/wagtail/wagtail-airtable/blob/master/README.md"
keywords = ["wagtail", "airtable"]
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
]
packages = [
{ include = "wagtail_airtable" },
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
wagtail = ">=2.6"
airtable-python-wrapper = "~0.15.3"
djangorestframework = ">=3.11.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.8", ]
build-backend = "poetry.core.masonry.api"