-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 971 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
30
31
32
# -*- coding: utf-8 -*-
"""
Created on Sat Nov 12 20:30:00 2022
@author: sarangbhagwat
"""
from setuptools import setup
setup(
name='contourplots',
packages=['contourplots'],
version='0.3.4',
description='A toolkit for generating multi-dimensional plots easily, usefully, and legibly.',
url='https://github.com/sarangbhagwat/contourplots',
author='Sarang S. Bhagwat',
author_email='[email protected]',
license='MIT',
# packages=['contourplots'],
install_requires=['matplotlib==3.5.2',
'numpy>=1.23.4',
'imageio>=2.19.3',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.9'
],
)