-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (25 loc) · 998 Bytes
/
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
from setuptools import setup
version = '0.2.0'
setup(
name='colourlovers',
packages=['colourlovers'], # this must be the same as the name above
version=version,
description='A python wrapper for ColourLovers API',
long_description='\n\n'.join([
open('README.rst').read(), open('CHANGES.rst').read()]),
author='Juan Gallostra',
author_email='[email protected]',
license='MIT',
url='https://github.com/juangallostra/Colourlovers-API-wrapper', # use the URL to the github repo
download_url='https://github.com/juangallostra/Colourlovers-API-wrapper/archive/'+version+'.tar.gz', # I'll explain this in a second
keywords=['color', 'colour', 'palette', 'api', 'colourlovers', 'wrapper'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=[
'Pillow',
],
)