-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 949 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 949 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as file:
long_description = file.read()
setup(
name='azure-test-cli',
version='0.4.4',
packages=find_packages(),
include_package_data=True,
author="Michael Groves",
author_email="mike@wildengineer.com",
description="CLI to test azure resources, such as servicebus, eventhub, and storage",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wildengineer/azure-test-cli",
install_requires=[
'click',
'asyncio',
'azure-eventhub',
'azure-servicebus',
'azure-storage-blob'
],
entry_points='''
[console_scripts]
aztest=azuretestcli.cli:cli
''',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)