Skip to content

Commit

Permalink
Bump version to 1.0 and added what we need to generate a pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Tricaud committed Feb 12, 2020
1 parent db007af commit fc30bc4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gvgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from six import iteritems
from sys import stdout

gvgen_version = "0.9.2"
gvgen_version = "1.0"

debug = 0
debug_tree_unroll = 0
Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
#!/usr/bin/python

import setuptools
from distutils.core import setup

setup(name="GvGen",
version="0.9",
install_requires=['six',],
version="1.0",
author="Sebastien Tricaud",
author_email="sebastien@honeynet.org",
description="Generate clear Graphviz Graphs which can be edited manually later on.",
url="http://www.github.com/stricaud/gvgen/",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
py_modules=["gvgen"])

0 comments on commit fc30bc4

Please sign in to comment.