-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 802 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name = 'kthcolors',
packages = ['kthcolors'], # this must be the same as the name above
version = '0.0.2',
classifiers=[
"License :: OSI Approved :: MIT",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Geometry",
],
description = 'Collection of KTH colors for matplotlib',
author = 'Antonio Adaldo',
author_email = 'anntonio.adaldo.89@gmail.com',
url = 'https://github.com/adaldo/matplotlib-kthcolors', # use the URL to the github repo
download_url = 'https://github.com/adaldo/matplotlib-kthcolors/tarball/0.0.1', # I'll explain this in a second
keywords = ['plot', 'matplotlib', 'colors', 'kth'], # arbitrary keywords
)