-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 1.36 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
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=80", "setuptools-scm[toml]>=10"]
build-backend = "setuptools.build_meta"
[project]
name = "warn-scraper"
description = "Command-line interface for downloading WARN Act notices of qualified plant closings and mass layoffs from state government websites"
authors = [
{ name = "Big Local News", email = "biglocalnews@stanford.edu" }
]
readme = "README.md"
# requires-python = ">=3.10"
keywords = ["WARN Act", "scrapers", "WARN Act data", "WARN Act scrapers"]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"bln",
"click",
"beautifulsoup4",
"html5lib",
"pdfplumber",
"requests",
"openpyxl",
"pyopenssl",
"retry2",
"selenium",
"stealthenium",
"tenacity",
"xlrd",
"xvfbwrapper",
"webdriver-manager"
]
dynamic = ["version"]
[project.scripts]
warn-scraper = "warn.cli:main"
[project.urls]
"Documentation" = "https://warn-scraper.readthedocs.io"
"Maintainer" = "https://github.com/biglocalnews"
"Source" = "https://github.com/biglocalnews/warn-scraper"
"Tracker" = "https://github.com/biglocalnews/warn-scraper/issues"
[tool.setuptools_scm]
local_scheme = "no-local-version"
# local_scheme = "no-local-version-strict"
# local_scheme = "only-version"
# ... other project metadata fields as listed in:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/