Skip to content

Commit

Permalink
Support installing the package from Pip
Browse files Browse the repository at this point in the history
  • Loading branch information
CJHwong committed Apr 27, 2022
1 parent 7a7b28b commit 98e0a52
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Changelog
=========

0.1
-----

Changes:

- Start this project by extracting the code from a private repository.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import setuptools

setuptools.setup(
name="pyx12lib",
version="0.1",
author="CJHwong",
author_email="[email protected]",
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",
)

0 comments on commit 98e0a52

Please sign in to comment.