-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 733 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 733 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
from setuptools import setup, find_packages
import sys, os
setup(name='xflash',
version='1.3.1',
description='Xbox360 USB SPI Flasher client',
long_description='',
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Juvenal',
author_email='none@of.your.biz',
url='https://github.com/Juvenal1228/XFlash/',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'pyusb>=1.0.0a1',
'argparse',
],
entry_points="""
[console_scripts]
xflash = xflash:main
""",
)