-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 1.47 KB
/
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
33
34
#!/usr/bin/env python
from distutils.core import setup
setup(name='boomslang',
version='1.0',
download_url='http://boomslang.googlecode.com/files/boomslang-0.6b.tar.gz',
description='A thin layer over matplotlib that simplifies creation of common plots',
long_description='''I created Boomslang to decrease the amount of boilerplate
code I had to write when producing graphs for research papers. Boomslang
treats data and plots separately and encapsulates them both in objects,
giving the programmer the ability to author modular, re-usable graphing
code.''',
author='Alex Rasmussen',
author_email='alexras@acm.org',
url='http://code.google.com/p/boomslang/',
keywords=['matplotlib'],
classifiers = [f.strip() for f in """
Development Status :: 4 - Beta
Environment :: Other Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines() if f.strip()],
license='BSD',
requires = ['matplotlib'],
packages=['boomslang'],
package_dir={'boomslang':''})
# vim: set ts=4 sw=4 expandtab: