-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (41 loc) · 1.17 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
#!/usr/bin/env python
# pypsu - Python classes for working with PS2 PSU game save file formats.
import os
from setuptools import setup
PACKAGE_NAME = 'pypsu'
VERSION = '0.1.2'
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename), 'r').read()
setup(
name=PACKAGE_NAME,
description='Library for analyzing and creating PS2 PSU game save files',
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/pypsu',
keywords='ps2 gamesave psu',
platforms=['Unix', 'Windows'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=[
'psu',
],
scripts=[
'bin/psu'
],
options={
'bdist_wheel': {
'universal': True
}
}
)