forked from Maxahoy/TDMSData_CDME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 918 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
install_requires = []
with open('requirements.txt') as file:
install_requires = [line for line in file.read().splitlines() if len(line) > 0]
setuptools.setup(
name='tdms2h5',
version='1.0.0',
author='BlueQuartz Software, LLC',
author_email='[email protected]',
description='tdms2h5 is a Python package for converting TDMS files into HDF5 files',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bluequartzsoftware/TDMS_Data_CDME',
py_modules=['tdms2h5'],
entry_points={'console_scripts' : ['tdms2h5=tdms2h5:main']},
license='BSD',
platforms='any',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License'
],
python_requires='>=3',
install_requires=install_requires
)