-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 783 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
[tool.poetry]
name = "craigslistscraper"
version = "1.1.2"
description = "Simple webscraper for Craigslist."
authors = ["Ryan Peters <RyanIRL@icloud.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ryanirl/craigslistscraper"
repository = "https://github.com/ryanirl/craigslistscraper"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
include = ["LICENSE"]
packages = [{include = "craigslistscraper"}]
[tool.poetry.dependencies]
python = "^3.7"
requests = "*"
beautifulsoup4 = "*"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"