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', + ], +)