2019-03-24 20:50:19 -07:00
|
|
|
#!/usr/bin/env python3
|
2017-06-21 01:29:38 -07:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
2019-03-24 20:51:26 -07:00
|
|
|
|
|
|
|
with open('README.md', 'r') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2020-11-01 20:16:06 -08:00
|
|
|
with open('mem_edit/VERSION.py', 'rt') as f:
|
|
|
|
version = f.readlines()[2].strip()
|
2019-03-24 20:51:26 -07:00
|
|
|
|
2017-06-21 01:29:38 -07:00
|
|
|
setup(name='mem_edit',
|
2019-09-30 23:59:20 -07:00
|
|
|
version=version,
|
2017-06-21 01:43:32 -07:00
|
|
|
description='Multi-platform library for memory editing',
|
2019-03-24 20:51:26 -07:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
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 :: 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(),
|
2019-09-30 23:59:20 -07:00
|
|
|
package_data={
|
2020-11-01 20:16:06 -08:00
|
|
|
'mem_edit': []
|
2019-09-30 23:59:20 -07:00
|
|
|
},
|
2017-06-21 01:29:38 -07:00
|
|
|
install_requires=[
|
|
|
|
'typing',
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|