-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (52 loc) · 1.63 KB
/
setup.py
File metadata and controls
57 lines (52 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import osaka
def readme():
with open("README.md") as f:
return f.read()
setup(
name="osaka",
version=osaka.__version__,
description=osaka.__description__,
long_description_content_type="text/markdown",
long_description=readme(),
url=osaka.__url__,
packages=find_packages(exclude=["tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
python_requires='>=3.10',
install_requires=[
"requests>=2.31.0",
"easywebdav>=1.2.0",
"azure-storage-blob>=12.18.0",
"azure-identity>=1.15.0", # For DefaultAzureCredential
"awscli>=1.29.0",
"boto3>=1.32.0",
"google-cloud-storage>=2.13.0",
"backoff>=2.2.1",
"future>=1.0.0", # Required for Python 2/3 compatibility
'moto>=4.1.0',
'mock>=5.1.0',
],
extras_require={
'test': [
'pytest>=7.4.0',
'pytest-cov>=4.1.0',
],
},
entry_points={
"console_scripts": ["osaka = osaka.__main__:main"]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
],
)