Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
korc committed Jun 15, 2012
1 parent f863fd2 commit a752fb0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/python

from setuptools import setup

setup(
name="StructX",
author=u"Lauri Korts-P\xe4rn",
version="1.0",
author_email="[email protected]",
url="http://github.com/korc/structx",
license="GPL",
description="Unknown binary data dissection/analyze/reassembly library",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Plugins",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Disassemblers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=["structx"],
)

0 comments on commit a752fb0

Please sign in to comment.