-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
46 lines (41 loc) · 1.4 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
import os
from setuptools import setup
NAME = "imgur_scraper"
DESCRIPTION = "Scrape years of Imgur's data without any authentication."
URL = "https://github.com/saadmanrafat/imgur-scraper"
EMAIL = "[email protected]"
AUTHOR = "Saadman Rafat"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "2.6.3"
REQUIRED = ["requests-html", "requests"]
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name=NAME,
long_description=long_description,
long_description_content_type="text/markdown",
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=["imgur_scraper"],
entry_points={
"console_scripts": ["imgur-scraper=imgur_scraper.imgur_scraper:main"]
},
install_requires=REQUIRED,
include_package_data=True,
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
],
)