forked from slott56/TigerShark
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
41 lines (38 loc) · 1.28 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from distutils.core import setup
from tigershark import __version__
setup(
name='TigerShark',
version=__version__,
description='TigerShark: An X12 file parser.',
long_description='TigerShark is an X12 EDI message parser that can be '\
'tailored to a specific partner in the health care payment '\
'ecosystem.',
author='Steven Buss & Steven Lott',
author_email='[email protected]',
download_url='https://github.com/sbuss/TigerShark/tarball/v%s' % \
__version__,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Text Processing",
],
packages=[
'tigershark',
'tigershark.extras',
'tigershark.facade',
'tigershark.facade.enums',
'tigershark.parsers',
'tigershark.tools',
'tigershark.X12',
'tigershark.X12.map',
'tigershark.X12.message',
],
scripts=[
'tigershark/tools/convertPyX12.py',
'tigershark/tools/generate_all_parsers.py',
],
package_data={'tigershark': ['tests/*.txt', 'tests/*.xml', 'tests/*.csv']},
)