-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.03 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.03 KB
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
from setuptools import setup,find_packages
from os import path
basedir = path.abspath(path.dirname(__file__))
with open(path.join(basedir, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='catwallpaper',
version='0.11',
url='https://github.com/CyberSecByte/catwallpaper',
install_requires=["requests"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: System",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
author='CyberSecByte',
author_email='cybersecbyte@gmail.com',
description='Download and apply random cat wallpapers on every platform (windows, mac or even linux) automatically',
long_description_content_type='text/markdown',
keywords=['cat', 'catwallpaper', 'wallpaper', 'meow', 'cats'],
long_description=long_description,
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["catwallpaper = catwallpaper:main"]
},
)