-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.18 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.18 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
37
38
39
40
41
42
from os import path
from setuptools import setup, find_packages
setup(
name='wallpaper',
version='0.2.3.dev0',
description='Generate wallpapers with Pillow and Palettable.',
long_description=open('README.rst').read() + '\n' +
open(path.join('docs', 'HISTORY.rst')).read(),
url='https://github.com/mitakas/wallpaper',
author='Dimitar Dimitrov',
author_email='admin@mitakas.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
keywords='wallpaper',
packages=find_packages(),
install_requires=[
'setuptools',
'Pillow',
'palettable',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
entry_points={
'console_scripts': [
'wallpaper=wallpaper.console_script:create_wallpaper',
],
},
include_package_data=True,
zip_safe=False,
)