-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 869 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
from setuptools import setup
setup(name="grid_figure",
version="1.0",
description="A utility to set up matplotlib axes for multi-panel plots.",
author="Britton Smith",
author_email="[email protected]",
license="BSD 3-Clause",
url="https://github.com/brittonsmith/grid_figure",
packages=["grid_figure"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: AIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Utilities",
],
install_requires=[
'matplotlib',
'numpy'
]
)