-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 707 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='asyncio-oss',
version='1.1.5',
description='An asynchronous python client SDK for OSS(Aliyun Object Storage Service).',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Yaocool/async-oss",
keywords="asyncio-oss, async-oss, oss",
author='Ozzy',
author_email='ozzycharon@gmail.com',
license='MIT',
install_requires=['aiohttp', 'oss2'],
packages=find_packages(exclude=['asyncio_oss.test']),
)