-
Notifications
You must be signed in to change notification settings - Fork 137
/
setup.py
36 lines (30 loc) · 960 Bytes
/
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
#!/usr/bin/env python
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2, 5):
sys.exit("requires python 2.5 and up")
if sys.version_info[0] == 3:
sys.exit("not compatible python 3")
here = os.path.dirname(__file__)
exec(open(os.path.join(here, 'memorpy', 'version.py')).read())
setup(name = "memorpy",
version = version_string, #@UndefinedVariable,
description = "Python library using ctypes to search/edit windows/linux programs memory",
author = "Nicolas VERDIER",
author_email = "[email protected]",
maintainer_email = "[email protected]",
license = "BSD",
url = "https://github.com/n1nj4sec/memorpy",
packages = [
'memorpy',
],
install_requires = [],
platforms = ["POSIX", "Windows"],
use_2to3 = False,
zip_safe = False,
long_description = open(os.path.join(here, "README.md"), "r").read(),
)