forked from sbuss/TigerShark
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
46 lines (43 loc) · 1.49 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
42
43
44
45
46
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 & Dave Peticolas',
author_email='[email protected]',
download_url=(
'https://github.com/jdavisp3/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",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
],
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']},
)