-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 759 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 759 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
'''setup script for this module'''
from setuptools import setup
def readme():
'''pull iin the readme file for the long description'''
with open('README.md') as rfile:
return rfile.read()
setup(
name='chamberconnectlibrary',
version='2.2.5',
description='A library for interfacing with Espec North America chambers',
long_description=readme(),
url='https://github.com/EspecNorthAmerica/ChamberConnectLibrary',
author='Espec North America',
author_email='mmetzler@espec.com',
license='MIT',
packages=['chamberconnectlibrary'],
install_requires=['pyserial'],
zip_safe=False,
keywords='Espec P300 SCP220 F4T F4',
include_package_data=True,
scripts=['bin/chamberconnectlibrary-test.py']
)