-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.03 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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='yoctoEC2',
version='0.2.1',
description='A yocto EC2 Python project',
long_description=long_description,
url='https://github.com/ttruongatl/yocto-ec2-utils',
author='Thanh Truong',
author_email='[email protected]',
keywords='yoctoEC2 build tools development',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
install_requires=[
'Click~=7.0',
'fabric~=2.4.0',
'boto3~=1.9.188'
],
tests_require=[
'pytest',
],
entry_points='''
[console_scripts]
yocto-ec2=yoctoEC2.scripts.command:cli
''',
project_urls={
'Bug Reports': 'https://github.com/ttruongatl/yocto-ec2-utils/issues',
'Source': 'https://github.com/ttruongatl/yocto-ec2-utils/',
},
)