-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 915 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"],
)