-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 792 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
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(name='mpl_animation',
version='0.1',
description='A module to create animations in matplotlib using an intuitive declarative syntax',
url='https://github.com/braaannigan/mpl_animation',
author='Liam Brannigan',
author_email='[email protected]',
license='MIT',
packages=['mpl_animation'],
install_requires=['numpy','matplotlib'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Visualization"
],
zip_safe=False)