-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·29 lines (27 loc) · 986 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='django-graphviz',
version='0.1',
description='Django Graphviz extension',
author='[email protected]',
author_email='[email protected]',
url='http://code.google.com/p/django-graphviz/',
packages=['graphviz', 'graphviz.management', 'graphviz.management.commands', 'graphviz.migrations'],
package_data={'graphviz': ['graphviz/templates/graphviz/*.dot']},
zip_safe=False,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: End Users/Desktop',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Database'
]
)