2017-06-21 01:29:38 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='mem_edit',
|
|
|
|
version='0.1',
|
2017-06-21 01:43:32 -07:00
|
|
|
description='Multi-platform library for memory editing',
|
2017-06-21 01:29:38 -07:00
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
2018-01-15 22:35:36 -08:00
|
|
|
url='https://mpxd.net/code/jan/mem_edit',
|
2017-06-21 01:44:57 -07:00
|
|
|
keywords=[
|
2017-06-21 01:29:38 -07:00
|
|
|
'memory',
|
|
|
|
'edit',
|
|
|
|
'editing',
|
|
|
|
'ReadProcessMemory',
|
|
|
|
'WriteProcessMemory',
|
|
|
|
'proc',
|
|
|
|
'mem',
|
|
|
|
'ptrace',
|
|
|
|
'multiplatform',
|
|
|
|
'scan',
|
|
|
|
'scanner',
|
|
|
|
'search',
|
|
|
|
'debug',
|
|
|
|
'cheat',
|
|
|
|
'trainer',
|
|
|
|
],
|
2017-06-21 01:44:57 -07:00
|
|
|
classifiers=[
|
2017-06-21 01:29:38 -07:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Other Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Topic :: Software Development',
|
|
|
|
'Topic :: Software Development :: Debuggers',
|
|
|
|
'Topic :: Software Development :: Testing',
|
|
|
|
'Topic :: System',
|
|
|
|
'Topic :: Games/Entertainment',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
'ctypes',
|
|
|
|
'typing',
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|