Ignore the build directory.
[pycfml.git] / setup.py
1 #!/usr/bin/python3
2
3 from distutils.core import setup
4
5 setup(name = "pycfml",
6       version = "0.1",
7       description = "Java classfile manipulation library",
8       author = "Fredrik Tolf",
9       author_email = "fredrik@dolda2000.com",
10       packages = ["classfile"],
11       license = "GPL-3")