initial commit

This commit is contained in:
nolan 2024-01-30 20:53:12 -08:00
commit 1186d0baba
4 changed files with 58 additions and 0 deletions

23
.gitignore vendored Normal file
View File

@ -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/

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Library AF Unify

8
lib_afc_unify/__init__.py Executable file
View File

@ -0,0 +1,8 @@
"""
lib_afc_unify
---------------------------------------
A Python library for working with AFC Unify
"""

25
setup.py Normal file
View File

@ -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=[
],
)