-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 855 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name = 'ipsy',
version = '0.3',
description = 'Command line IPS (Internal Patch System) applier and differ',
author = 'Adam Nunez',
author_email = 'adam.a.nunez@gmail.com',
license = 'GPLv3',
url = 'https://gitlab.com/aanunez/ipsy',
packages = ['ipsy'],
entry_points={
'console_scripts': [
'ipsy = ipsy.__main__:main'
]
},
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
],
keywords='emulation ips rom patch emulator'
)