-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (33 loc) · 894 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (33 loc) · 894 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
34
35
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name='scarface-utils',
version='1.1.7',
packages=find_packages(),
package_data={
'': ['*.json', '*.xml']
},
install_requires=[
'azure-batch',
'azure-keyvault',
'azure-storage-blob',
'azure-storage-common',
'bump2version',
'pydocumentdb',
'PyYAML',
'python-gitlab',
'PyGithub',
],
entry_points={
'console_scripts': [
'bump-version = scarface_utils.common.bump_version:main',
]
},
description='Packaged utils to interact with Azure Services and auto-bump on pipeline',
author='Massimo Luraschi',
author_email='massimo.lura@gmail.com',
url='https://github.com/ScarfaceIII/utils'
)