-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 954 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
34
35
36
37
38
39
import os
from setuptools import setup, find_packages
# Get current location
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
readme = f.read()
# Setup
setup(
name='rabectl',
version='0.1.0',
description='Rabe GitOps CLI',
long_description=readme,
long_description_content_type='text/markdown',
author='Claudio Scalzo',
author_email='claudio.scalzo@outlook.com',
url='https://www.rabegitops.it/',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6.*, <4',
entry_points={
'console_scripts': [
'rabectl=rabectl:main',
],
},
install_requires=[
'awscli',
'boto3',
'click',
'pyfiglet',
'pyinquirer',
'gitpython',
'pygithub',
'python-terraform'
]
)