-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (39 loc) · 1.21 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
from setuptools import find_packages, setup
from dwc import _version
requirement_list = [r.strip()
for r in open('requirements.txt', 'r').readlines() if r]
LICENSE = "MIT"
KEYWORDS = [
"wallpaper",
"customization",
"personalization",
]
CLASSIFIERS = [
"Topic :: Personalization",
"Programming Language :: Python",
"Intended Audience :: All",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
if __name__ == '__main__':
setup(
name='dtwc',
author=_version.__author__,
version=_version.__version__,
install_requires=requirement_list,
description='Change your desktop wallpaper daily!',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'dwc = dwc.main:main'
],
},
license=LICENSE,
keywords=KEYWORDS,
python_requires='>=3.5',
author_email='[email protected]',
url='https://github.com/ayan-b/Desktop-Wallpaper-Changer',
packages=find_packages(),
)