2023-12-03 04:20:00 +00:00
|
|
|
"""
|
|
|
|
|
Project build definition file.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
with open('README.md', 'r') as f:
|
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
|
|
setup(
|
2023-12-07 23:47:14 +00:00
|
|
|
name='lib_afc_mosaic',
|
|
|
|
|
version='0.1.5',
|
2023-12-03 04:20:00 +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=[
|
2023-12-07 06:21:25 +00:00
|
|
|
'phonenumbers==8.13.26',
|
2023-12-03 04:20:00 +00:00
|
|
|
],
|
|
|
|
|
)
|