forked from Caff1982/LikeeScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.14 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "LikeeScraper"
version = "1.0.0"
description = "A command-line application written in Python that can be used for scraping information from Likee."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["python", "scraper", "python3", "likee-downloader", "likee"]
authors = [{name = "Stephen Cafferty", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English"
]
dependencies = [
"requests",
"selenium",
]
[tool.setuptools]
packages = ["LikeeScraper"]
[project.urls]
homepage = "https://github.com/Caff1982/LikeeScraper"
documentation = "https://github.com/Caff1982/LikeeScraper/blob/main/README.md"
repository = "https://github.com/Caff1982/LikeeScraper.git"
[project.scripts]
LikeeScraper = "LikeeScraper.scraper:start_scraper"