-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.22 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
30
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "vizing",
packages = ["vizing"],
version = "0.0.9",
description = "List-colouring of graphs",
author = "Matthew Henderson",
author_email = "[email protected]",
url = "http://packages.python.org/vizing/",
download_url = "http://pypi.python.org/pypi/vizing/",
keywords = [""],
classifiers = [
"Programming Language :: Python",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Vizing -- list-colouring of graphs in Python
============================================
Vizing is a collection of Python code for working with list-colouring problems. List vertex-colourings and list edge-colourings are both of interest here. With Vizing you can easily build a variety of models of a list colouring problem instances and use solvers to find realisations of your models.
Visualisations in LaTeX are provided via ``tkz-graph``."""
)