-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 943 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8", errors="ignore") as f:
long_description = f.read()
setuptools.setup(
name="AlphacodersDownloader",
version="0.1.4.3",
author="Asthowen",
author_email="contact@asthowen.fr",
maintainer="Asthowen",
maintainer_email="contact@asthowen.fr",
license="GNU v3.0",
description="A script for download wallpapers on https://alphacoders.com written in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Asthowen/AlphacodersDownloader",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"alphacoders-downloader = alphacoders_downloader.alphacoders_downloader:start"
]
},
python_requires=">= 3.6",
include_package_data=True,
install_requires=["aiohttp", "aiofiles", "setproctitle", "beautifulsoup4"],
)