-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 1.03 KB
/
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
from setuptools import setup
setup(
name='deepmage',
version='0.2.1',
packages=['libdeepmage'],
url='https://github.com/mmiszczyk/deepmage',
license='GPL 3',
author='Maciej Miszczyk',
author_email='[email protected]',
description='Hex editor for bit-level occultism',
install_requires=['hy', 'bitstring', 'asciimatics'],
python_requires='>=3',
package_data={'': '*.hy'},
scripts=('deepmage', 'deepmage-hexdump', 'deepmage-hexparse'),
classifiers=('Programming Language :: Python :: 3',
'Programming Language :: Lisp',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Topic :: Security',
'Topic :: Software Development :: Embedded Systems')
)