-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.1 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
import os
from setuptools import setup, find_packages
description = 'This is a command line interface for easy operation with blobs in Azure Blob Storage.'
long_description = description
if os.path.exists('README.md'):
long_description = open('README.md').read()
setup(
name="blobcli",
version='0.0.6',
packages=find_packages(),
author='Ryo Nakamine',
author_email='[email protected]',
url='https://github.com/rnakamine/blobcli',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='~=3.6',
install_requires=['Click', 'azure-storage-blob==12.8.0'],
entry_points='''
[console_scripts]
blobcli=blobcli.cli:main
''',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
)