From a51d3d26b4405839566c180baebe04b1c9e76419 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 14 Sep 2014 05:48:32 +0200 Subject: [PATCH] Added a distutils script. --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..5770846 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 + +from distutils.core import setup + +setup(name = "pycfml", + version = "0.1", + description = "Java classfile manipulation library", + author = "Fredrik Tolf", + author_email = "fredrik@dolda2000.com", + packages = ["classfile"], + license = "GPL-3") -- 2.11.0