-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 818 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
from setuptools import setup
setup(
name="lif_visualizer",
version="0.1.1",
author="Dominik Werman",
author_email="dominik.werman@4am-robotics.com",
description="The LIF visualizer allows for the simple and quick visualisation of Layout Interchange Files using NetworkX.",
long_description=open("README.md").read(),
url="https://github.com/Odin-byte/lif_visualization/",
license="Apache 2.0",
packages=[
"lif_visualizer",
],
install_requires=[
"matplotlib",
"networkx"
],
entry_points={
"console_scripts": [
"lif_visualizer = lif_visualizer.visualizer:main",
]
},
classifiers=[
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python",
],
)