2023-12-08 04:34:34 +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_af_api',
|
2023-12-10 07:03:04 +00:00
|
|
|
version='0.1.5',
|
2023-12-08 04:34:34 +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=[
|
|
|
|
|
'requests==2.29.0',
|
|
|
|
|
],
|
|
|
|
|
)
|