-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 927 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name = 'XSeriesTestTool',
version = '0.1',
description = 'A tool to help study and analyse NSW XSeries protocol compliant data blocks.',
long_description = readme(),
classifiers = [
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GPLv3',
'Development Status :: under constant development through feedback',
],
keywords = 'Gambling Australia New South Wales NSW X XSeries XComm',
url = 'https://github.com/nevtum/XSeriesTestTool',
author = 'Neville Tummon',
#author_email = '[email protected]',
license = 'GPLv3',
packages = ['XSeriesTestTool'],
install_requires = [
'PyQt4',
'sqlite3',
'pyserial',
],
include_package_data = True,
zip_safe = False)