forked from deepjyoti30/QuickWall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 746 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 746 Bytes
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
from setuptools import setup, find_packages
requirements = [
'requests',
'pywal',
'downloader-cli',
'beautifulsoup4',
'dbus-python',
'simber'
]
setup(
name='QuickWall',
packages=find_packages(),
author='Deepjyoti Barman',
author_email='deep.barman30@gmail.com',
description='Set any wallpaper from commandline',
long_description='Set any wallpaper from Unsplash from the commandline',
url='http://github.com/deepjyoti30/QuickWall',
entry_points={
'console_scripts': [
'quickwall = QuickWall.__main__:main_handler',
'QuickWall = QuickWall.__main__:main_handler'
]
},
version='0.0.5',
license='MIT',
install_requires=requirements,
)