forked from ericmjl/nxviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 937 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
from setuptools import setup
with open("README.md") 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.6.2",
description="Graph Visualization Package",
long_description=readme + "\n\n" + history,
author="Eric J. Ma",
author_email="ericmajinglong@gmail.com",
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",
],
)