-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.52 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
55
56
57
[tool.poetry]
name = "formsite-util"
version = "2.1.1"
description = "Python library and CLI tool for interacing with the FormSite API"
authors = ["Jakub Strnad <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/strny0/formsite-utility/"
keywords = ["formsite", "form", "api", "download", "export"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
packages = [{ include = "formsite_util" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/strny0/formsite-utility/issues"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8.1"
requests = "^2.0.0"
pandas = "^1.4.0"
pytz = "^2021.0"
tqdm = "^4.60"
colorama = "^0.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^22.1.0"
types-requests = "^2.28.2"
types-pytz = "^2022.1.2"
[tool.poetry.extras]
serialization = ["openpyxl", "pyarrow", "tables"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
getform = 'formsite_util.cli:main'
[tool.mypy]
ignore_missing_imports = true
exclude = [
'^old/.+\.py$',
'^formsite_util/legacy/.+\.py$',
'^tests/.+\.py$',
]