lib-af-s3storage/setup.py

27 lines
553 B
Python
Raw Normal View History

2023-12-03 02:33:11 +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_s3storage',
2023-12-04 07:40:15 +00:00
version='0.1.1',
2023-12-03 02:33:11 +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=[
'boto3==1.33.6',
'smart-open==6.4.0',
2023-12-03 02:33:11 +00:00
],
)