update setup

This commit is contained in:
nolan 2023-12-02 18:33:11 -08:00
parent 7761debc5b
commit 5b89f0d581
2 changed files with 25 additions and 15 deletions

View File

@ -1,15 +0,0 @@
[metadata]
name = lib_afc_s3storage
version = 0.1.0
author = ''
author_email = ''
description = ''
long_description = file: README.md
[options]
zip_safe = False
include_package_data = False
packages = find:
python_requires = >=3.7
install_requires =
boto3==1.33.6

25
setup.py Normal file
View File

@ -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_s3storage',
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=[
'boto3==1.33.6',
],
)