diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d820af8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +Changelog +========= + +0.1 +----- + +Changes: + +- Start this project by extracting the code from a private repository. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c40624f --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +import setuptools + +setuptools.setup( + name="pyx12lib", + version="0.1", + author="CJHwong", + author_email="pypi@hardcoretech.co", + url="https://github.com/hardcoretech/pyx12-lib", + classifiers=[ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", + ], + package_dir={"pyx12lib": "pyx12lib"}, + packages=setuptools.find_packages(), + install_requires=[ + "python-dateutil", + "six", + ], + python_requires=">=3.6", +)