-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 874 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
28
29
30
31
32
33
import setuptools
from vscodl import constants
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name="vsco-dl",
version=constants.VERSION,
description="Tool for downloading VSCO user images and journals",
long_description=long_description,
long_description_content_type="text/markdown",
author="tecome",
author_email="[email protected]",
url="https://github.com/tecome/vsco-dl",
packages=setuptools.find_packages(),
install_requires=[
"tqdm",
"requests",
"beautifulsoup4",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
entry_points={
"console_scripts": [
"vsco-dl = vscodl:main"
]
},
keywords="vsco dl scrape download image",
python_requires=">=3.5"
)