forked from ericmjl/nxviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 953 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
30
31
32
33
34
35
36
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = []
with open('requirements.txt') as rqmts:
for r in rqmts:
requirements.append(r.strip('\n'))
setup(
name='nxviz',
version="0.3.1",
description="Graph Visualization Package",
long_description=readme + '\n\n' + history,
author="Eric J. Ma",
author_email="[email protected]",
url='https://github.com/ericmjl/nxviz',
packages=[
'nxviz',
],
package_dir={'nxviz': 'nxviz'},
include_package_data=True,
install_requires=requirements,
license="MIT license",
keywords='nxviz',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
)