Skip to content

Commit

Permalink
added setupfile. LICENCE to Crameri
Browse files Browse the repository at this point in the history
  • Loading branch information
callumrollo committed May 6, 2020
1 parent 38084b1 commit cce2493
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
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',
],
)

0 comments on commit cce2493

Please sign in to comment.