2024-01-31 04:53:12 +00:00
|
|
|
"""
|
|
|
|
|
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',
|
2024-03-29 02:26:21 +00:00
|
|
|
version='0.1.2',
|
2024-01-31 04:53:12 +00:00
|
|
|
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=[
|
2024-03-24 18:03:12 +00:00
|
|
|
'boto3==1.33.6',
|
|
|
|
|
'Jinja2==3.1.3',
|
2024-01-31 04:53:12 +00:00
|
|
|
],
|
|
|
|
|
)
|