-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 968 Bytes
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
[tool.poetry]
name = "py591"
version = "0.0.3"
description = "Parser and parsing API service for 591 Housing Rental service"
authors = ["Frank Chang <frank@csie.io>"]
license = "BSD-3-Clause"
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet",
]
keywords=["api", "591", "housing"]
[tool.poetry.dependencies]
python = "^3.6"
beautifulsoup4 = "^4.9.0"
Flask = "^1.1.2"
Pillow = ">=7.2,<9.0"
pytesseract = "^0.3.5"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.5.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"