From 1186d0babaceebe3856a7c5d1e4c34e10f4325e1 Mon Sep 17 00:00:00 2001 From: nolan Date: Tue, 30 Jan 2024 20:53:12 -0800 Subject: [PATCH] initial commit --- .gitignore | 23 +++++++++++++++++++++++ README.md | 2 ++ lib_afc_unify/__init__.py | 8 ++++++++ setup.py | 25 +++++++++++++++++++++++++ 4 files changed, 58 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100755 lib_afc_unify/__init__.py create mode 100644 setup.py 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=[ + ], +) +