-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 704 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 704 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
sys.path.insert(0, 'NetworkxD3')
sys.path.pop(0)
packages = ['NetworkxD3']
setup(
name='networkxD3',
version='0.20',
author='Janu Verma',
author_email='jv367@cornell.edu',
description='D3 JavaScript networkx Graphs',
url='https://github.com/Jverma/NetworkxD3',
platforms=['Linux','Mac OSX', 'Windows', 'Unix'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: MIT License',
'Operating System :: OS Independent',
'Progamming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
packages=packages,
license='MIT'
)