forked from Azure/blobxfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 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
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('blobxfer.py', 'r') as fd:
version = re.search(
r'^_SCRIPT_VERSION\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
with open('README.rst') as readme:
long_description = ''.join(readme).strip()
setup(
name='blobxfer',
version=version,
author='Microsoft Corporation, Azure Batch and HPC Team',
author_email='',
description='Azure storage transfer tool with AzCopy-like features',
long_description=long_description,
platforms='any',
url='https://github.com/Azure/blobxfer',
license='MIT',
py_modules=['blobxfer'],
entry_points={
'console_scripts': 'blobxfer=blobxfer:main',
},
install_requires=[
'azure-common==1.1.4',
'azure-storage==0.33.0',
'azure-servicemanagement-legacy==0.20.5',
'cryptography>=1.6',
'requests==2.12.3'
],
tests_require=['pytest'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
],
keywords='azcopy azure storage blob files transfer copy smb',
)