From cce2493c89efeb15fc21af0431cb1ed0fbf68e16 Mon Sep 17 00:00:00 2001 From: Callum Rollo Date: Wed, 6 May 2020 18:35:50 +0200 Subject: [PATCH] added setupfile. LICENCE to Crameri --- LICENSE | 2 +- setup.py | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/LICENSE b/LICENSE index 587b1eb..5f39d24 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Callum Rollo +Copyright (c) 2020 Fabio Crameri Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..00d0681 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +""" +setup.py for cmcrameri + +""" +from distutils.core import setup +setup( + name = 'cmcrameri', + packages = ['cmcrameri'], + version = '0.1', + license='MIT', + description = 'Perceptually uniform colourmaps', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + author = 'Callum Rollo', + author_email = 'c.rollo@outlook.com', + url = 'https://github.com/callumrollo/cmcrameri', + download_url = 'https://github.com/callumrollo/cmcrameri/v_01.tar.gz', + keywords = ['colormaps', 'oceanography', 'plotting', 'visualization'], + install_requires=[ + 'matplotlib', + 'numpy', + ], +)