File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 33from setuptools import setup
44import versioneer
55
6- with open ("requirements.txt" ) as file :
7- aiobotocore_version_suffix = ""
8- for line in file :
9- parts = line .rstrip ().split ("aiobotocore" )
10- if len (parts ) == 2 :
11- aiobotocore_version_suffix = parts [1 ]
12- break
13-
146setup (
157 name = "s3fs" ,
168 version = versioneer .get_version (),
3527 packages = ["s3fs" ],
3628 python_requires = ">= 3.10" ,
3729 install_requires = [open ("requirements.txt" ).read ().strip ().split ("\n " )],
38- extras_require = {
39- "awscli" : [f"aiobotocore[awscli]{ aiobotocore_version_suffix } " ],
40- "boto3" : [f"aiobotocore[boto3]{ aiobotocore_version_suffix } " ],
41- },
4230 long_description = "README.md" ,
4331 long_description_content_type = "text/markdown" ,
4432 zip_safe = False ,
You can’t perform that action at this time.
0 commit comments