-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.22 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
[tool.poetry]
name = "airlift"
version = "1.1.3"
description = "Upload & Merge Data with Attachments to Airtable"
authors = ["Arjun <arjunprakash027@gmail.com>"]
readme = "README.md"
include = ["CHANGELOG.md"]
license = "MIT"
homepage = "https://github.com/TheAcharya/Airlift"
repository = "https://github.com/TheAcharya/Airlift"
documentation = "https://github.com/TheAcharya/Airlift/blob/main/README.md"
keywords = ["csv", "json", "airtable", "dropbox", "import", "merge"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Unix",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Terminals",
"Topic :: Utilities",
]
[tool.poetry.scripts]
airlift = "airlift.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
pyairtable = "^2.1.0.post1"
requests = "^2.31.0"
tqdm = "^4.64.0"
dropbox = "^11.36.2"
icecream = "^2.1.3"
[tool.poetry.group.dev.dependencies]
pyairtable = "^2.1.0.post1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"