-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 836 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 836 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='ips_util',
version='1.0',
description='A Python package for manipulating IPS patches',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: Freeware',
'Natural Language :: English'
'Programming Language :: Python :: 3.2',
'Topic :: Utilities'
],
url='https://github.com/nleseul/ips_util',
author='NLeseul',
author_email='nleseul@this-life.us',
license='Unlicense',
packages=['ips_util'],
entry_points = {
'console_scripts': ['ips_util=ips_util.__main__:main'],
},
test_suite='ips_util.tests',
python_requires='>=3.2',
zip_safe=False)