-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 887 Bytes
/
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
from setuptools import setup
import versioneer
requirements = [
'azure-batch>=11.0.0',
'azure-storage-blob>=2.1.0',
'azure-mgmt-resource>=18.0.0',
'azure-identity>=1.5.0'
]
setup(
name='azure_dms_batch',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Azure Batch for Delta Modeling Section",
license="MIT",
author="Nicky Sandhu",
author_email='[email protected]',
url='https://github.com/CADWRDeltaModeling/azure_dms_batch',
packages=['dmsbatch'],
entry_points={
'console_scripts': [
'dmsbatch=dmsbatch.cli:main'
]
},
install_requires=requirements,
keywords='azure_dms_batch',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)