-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 1.02 KB
/
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, find_packages
setup(
name='pygraph-cli',
description='CLI for pygraphviz powered by graphviz',
url='https://github.com/EntilZha/pygraph',
author='Pedro Rodriguez',
author_email='ski.rodriguez@gmail.com',
maintainer='Pedro Rodriguez',
maintainer_email='ski.rodriguez@gmail.com',
license='MIT',
keywords='graph visualization graphviz python cli',
packages=find_packages(),
version='0.1.0',
install_requires=['graphviz', 'click', 'pyfunctional'],
entry_points={
'console_scripts': ['pygraph = pygraph.cli:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)