-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
49 lines (41 loc) · 1.33 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
from distutils.core import setup
from zio import __version__
setup(
name='zio',
version=__version__,
author='Wenlei Zhu',
author_email='i@ztrix.me',
url='https://github.com/zTrix/zio',
license='LICENSE.txt',
keywords="zio pwning io expect-like",
description='Unified io lib for pwning development written in python.',
long_description=open('README.txt').read(),
py_modules = ['zio'],
# Refers to test/test.py
# test_suite='test.test',
entry_points = {
'console_scripts': [
'zio=zio:main'
]
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development',
'Topic :: System',
'Topic :: Terminals',
'Topic :: Utilities',
],
)