forked from d3/d3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 794 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='django-d3',
version='3.3.11',
url='https://github.com/mikebryant/django-d3',
description='Django package for d3',
author='Michael Bostock',
maintainer='Mike Bryant',
maintainer_email='mike@mikebryant.me.uk',
license='BSD license',
keywords=['django', 'd3', 'staticfiles'],
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=['d3'],
package_data={'d3': ['static/js/*.js']},
)