forked from glitchassassin/python-edi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.02 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
""" Setup script for PythonEDI
"""
import re
from setuptools import setup, find_packages
setup(
name="PythonEDI",
description="An X12 EDI generator/parser",
long_description="""PythonEDI uses JSON format definitions to make it easy
to generate or read X12 EDI messages from/to Python dicts/lists.""",
url="https://github.com/glitchassassin/python-edi",
author="Jon Winsley",
author_email="[email protected]",
license="MIT",
version="0.1.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Office/Business",
"Topic :: Text Processing"
],
keywords="x12 edi 810",
packages=find_packages(exclude=['test']),
package_data={"pythonedi": ["formats/*.json"]},
install_requires=['colorama'],
include_package_data=True,
)