-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 993 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 993 Bytes
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
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=f"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",
],
)