-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import io
import re
import os
from setuptools import setup, find_namespace_packages
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', os.linesep)
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
def read_version():
content = read(os.path.join(
os.path.dirname(__file__), 'gurumcli', '__init__.py'))
return re.search(r"__version__ = '([^']+)'", content).group(1)
setup(
name='gurum-cli',
version=read_version(),
description='Gurum CLI is a tool to manage applications on the Gurum Platform.',
long_description=read('README.md'),
author='Karl Wallbom',
author_email='[email protected]',
url='https://github.com/kalleeh/gurum-cli',
license=read('LICENSE'),
packages=find_namespace_packages(exclude=('tests', 'docs')),
keywords="Gurum CLI",
# Support Python 2.7 and 3.6 or greater
python_requires='!=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
entry_points={
'console_scripts': [
'gurum=gurumcli.cli.main:cli'
]
},
install_requires=[
'awslogs',
'boto3',
'botocore',
'click',
'click-spinner',
'colorama',
'gitpython',
'keyring',
'prettytable',
'termcolor',
'yamale',
'requests',
'warrant'
],
include_package_data=True
)