-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
56 lines (52 loc) · 1.66 KB
/
setup.py
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
from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
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,
install_requires=[
"requests>=2.7.0",
"easywebdav==1.2.0",
"filechunkio==1.6.0",
"azure-storage-blob==1.4.0",
"awscli>=1.17.1",
"boto3>=1.11.1",
"google-cloud-storage>=0.22.0",
"six>=1.10.0",
"configparser>=3.5.0",
"future>=0.17.1",
"backoff>=1.3.1",
"mock>=4.0.3",
"moto>=2.0.6",
],
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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
],
)