-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
36 lines (33 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
32
33
34
35
36
import setuptools
# get package details from backgroundchanger/config.py
from backgroundchanger import config
with open('README.md', 'r') as ld:
long_desc = ld.read()
setuptools.setup(
name='backgroundchanger',
version=config.VERSION,
author=config.AUTHOR,
author_email=config.EMAIL,
description='background changer using unsplash API.',
long_description=long_desc,
long_description_content_type="text/markdown",
license='MIT',
url=config.URL,
python_requires='>=3.5',
zip_safe=False,
entry_points={
'console_scripts': [
'backgroundchanger=backgroundchanger.__main__:main'
]
},
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
install_requires=[
'requests >=2.0, <3.0',
'pywal >=3.0, <4.0',
'distro >=1.0, <2.0'
]
)