-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (49 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# okrager - Command line tool to inject a PS2 ELF into an Okage game save file.
import os
from setuptools import setup
PACKAGE_NAME = 'okrager'
VERSION = '0.1.0'
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename), 'r').read()
setup(
name=PACKAGE_NAME,
description='Command line tool to inject a PS2 ELF into an Okage Shadow King game save file',
long_description=read('README.md'),
long_description_content_type='text/markdown',
license='MIT',
version=VERSION,
author='McCaulay Hudson',
maintainer='McCaulay Hudson',
author_email='[email protected]',
url='https://github.com/McCaulay/okrager',
keywords='ps2 gamesave psu okage shadow king mast1c0re',
platforms=['Unix', 'Windows'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=[
'okrager',
],
package_data={
'okrager': [
'stagers/bin/*.bin',
],
},
scripts=[
'bin/okrager',
],
install_requires=[
'mymcplus==3.0.5',
'pypsu==0.1.2',
],
options={
'bdist_wheel': {
'universal': True,
}
}
)