commit 1186d0babaceebe3856a7c5d1e4c34e10f4325e1 Author: nolan Date: Tue Jan 30 20:53:12 2024 -0800 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2c078a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +venv/ +test-venv/ + +*.pyc +__pycache__/ + +instance/ + +.pytest_cache/ +.coverage +htmlcov/ + +dist/ +build/ +*.egg-info/ + +node_modules/ + +.envs +session_files/ +mongo_data/ +test_data/ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..ab66962 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Library AF Unify + diff --git a/lib_afc_unify/__init__.py b/lib_afc_unify/__init__.py new file mode 100755 index 0000000..92c0482 --- /dev/null +++ b/lib_afc_unify/__init__.py @@ -0,0 +1,8 @@ +""" +lib_afc_unify +--------------------------------------- + +A Python library for working with AFC Unify + +""" + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b933d0c --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +""" +Project build definition file. +""" + +from setuptools import setup, find_packages + +with open('README.md', 'r') as f: + long_description = f.read() + +setup( + name='lib_afc_unify', + version='0.1.0', + author='', + author_email='', + description='', + long_description=long_description, + long_description_content_type='text/markdown', + zip_safe=False, + include_package_data=False, + packages=find_packages(), + python_requires='>=3.7', + install_requires=[ + ], +) +