-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 1 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
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
setup(
name ='getwallpapers',
packages =find_packages(include=['getwallpapers']),
version ='0.1.1',
description ='download wallpaper collection from http://getwallpapers.com/',
long_description = long_description,
long_description_content_type='text/markdown',
author ='Shrikrishna Joisa',
author_email ='[email protected]',
license ='MIT',
url ='https://github.com/falcon-head/getwallpapers-downloader',
platforms =['Any'],
py_modules =[],
install_requires =['beautifulsoup4', 'tqdm', 'urllib3'],
classifiers =[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)