forked from vsantiago113/ReadWriteMemory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.39 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(name='ReadWriteMemory',
packages=['ReadWriteMemory'],
version='0.1.5',
license='MIT',
description='ReadWriteMemory Class to work with Windows process memory and hacking video games.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Victor M Santiago',
author_email='[email protected]',
url='https://github.com/vsantiago113/ReadWriteMemory',
download_url='https://github.com/vsantiago113/ReadWriteMemory/archive/0.1.5.zip',
keywords=['ReadWriteMemory', 'Hacking', 'Cheat Engine'],
python_requires='>=3.4.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)