Dolda2000 GitWeb
/
pycfml.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efdb7a2
)
Added a distutils script.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Sun, 14 Sep 2014 03:48:32 +0000
(
05:48
+0200)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Sun, 14 Sep 2014 03:48:32 +0000
(
05:48
+0200)
setup.py
[new file with mode: 0755]
patch
|
blob
diff --git a/setup.py
b/setup.py
new file mode 100755
(executable)
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")