initial commit
This commit is contained in:
commit
1186d0baba
|
|
@ -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/
|
||||||
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
"""
|
||||||
|
lib_afc_unify
|
||||||
|
---------------------------------------
|
||||||
|
|
||||||
|
A Python library for working with AFC Unify
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
@ -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=[
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
Loading…
Reference in New Issue