-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 867 Bytes
/
setup.py
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
27
28
29
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='chrys',
version='4.0.29',
author='Hein Bekker',
author_email='hein@netbek.co.za',
description='A collection of color palettes for mapping and visualisation',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD-3-Clause',
url='https://github.com/netbek/chrys',
install_requires=[
'matplotlib >= 3.3.2, == 3.*',
'nose >= 1.3.7, == 1.*',
'numpy >= 1.7.1, == 1.*',
'wcag-contrast-ratio == 0.9',
],
python_requires='>=3.6',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
],
)