-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.29 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, find_packages
CURRENT_DIR = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(CURRENT_DIR, fname)).read()
# Info for setup
PACKAGE = 'reddit_view'
NAME = 'reddit_view'
DESCRIPTION = 'a reddit image collector'
AUTHOR = 'Jorge Perez'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/japrogramer/reddit_view'
VERSION = __import__(PACKAGE).__version__
# setup call
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=read('README.rst'),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license='BSD',
url=URL,
packages=find_packages(exclude=["tests.*", "tests"]),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords = 'reddit images imgur links list subreddits',
install_requires=[
'requests',
'beautifulsoup4',
'fake-useragent',
],
zip_safe=False,
entry_points={
'console_scripts': ['reddit_view=reddit_view.__main__:main',],},
)