-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 743 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'django-matplotlib',
description = '''Django interface to matplotlib''',
version = '0.1-pre-alpha',
author = 'Sergiy Kuzmenko',
author_email = 'sergiy@kuzmenko.org',
url = 'https://github.com/shelldweller/django-matplotlib',
packages=['django_matplotlib'],
classifiers = ['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)