forked from zduclos/artvee-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.69 KB
/
setup.py
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
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
requires = ["beautifulsoup4~=4.12.3", "requests~=2.32.3", "python-slugify~=8.0.4"]
setup(
name="artvee-scraper",
author="an303042",
author_email="[email protected]",
description="Fetch public domain artwork from https://www.artvee.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/an303042/artvee-scraper",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=requires,
license="MIT",
scripts=[],
zip_safe=True,
python_requires=">= 3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"artvee-scraper = artvee_scraper.runner:main",
]
},
keywords="artvee, artwork, webscraper",
project_urls={
"Bug Reports": "https://github.com/an303042/artvee-scraper/issues",
"Funding": "https://artvee.com/donate/",
"Source": "https://github.com/an303042/artvee-scraper",
},
)