mem_edit/setup.py

63 lines
1.7 KiB
Python
Raw Normal View History

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
2020-11-01 20:16:46 -08:00
with open('README.md', 'rt') as f:
2019-03-24 20:51:26 -07:00
long_description = f.read()
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',
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(),
package_data={
'mem_edit': []
},
2017-06-21 01:29:38 -07:00
install_requires=[
'typing',
],
extras_require={
},
)