-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
34 lines (32 loc) · 1.05 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
CLASSIFIERS=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'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 :: System :: Logging',
]
setup(
name='azure-storage-logging',
version='0.5.1',
description='Logging handlers to send logs to Microsoft Azure Storage',
long_description=open('README.rst').read(),
author='Michiya Takahashi',
author_email='michiya.takahashi@gmail.com',
url='https://github.com/michiya/azure-storage-logging',
license='Apache License 2.0',
packages=['azure_storage_logging'],
install_requires=[
'azure-storage>=0.33.0',
],
classifiers=CLASSIFIERS,
keywords='azure logging',
)