-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (39 loc) · 1.16 KB
/
setup.py
File metadata and controls
executable file
·43 lines (39 loc) · 1.16 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import (absolute_import, division, print_function)
import os
import sys
import setup_helper
from setuptools import find_packages, setup
version = '1.1.0'
cmdclass = setup_helper.version_checker(version, 'dttxml')
setup(
name='dttxml',
version=version,
url='',
author='Lee McCuller',
author_email='Lee.McCuller@ligo.org',
description=(
'Extract data from LIGO Diagnostics test tools XML format. Formerly dtt2hdf.'
),
license = 'Apache v2',
packages=find_packages(exclude=['doc']),
extras_require ={
"hdf" : ["h5py"],
},
tests_require=['pytest'],
entry_points={
'console_scripts': [
'dtt2hdf=dttxml.dtt2hdf:main',
]},
cmdclass = cmdclass,
zip_safe = True,
keywords = 'LIGO dtt diagnostics file-reader',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)