-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
49 lines (40 loc) · 1.16 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
__title__ = 'yocto-cooker'
__version__ = '1.4.0'
__author__ = "Christophe BLAESS, Patrick BOETTCHER"
__email__ = '[email protected], [email protected]'
__license__ = "GPL"
__url__ = "https://github.com/cpb-/yocto-cooker"
from setuptools import setup
import os
# Get description from the README file
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
_long_description = f.read()
setup(
name=__title__,
version=__version__,
description='meta build tool for Yocto Project based Linux embedded systems',
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
long_description=_long_description,
long_description_content_type='text/markdown',
package_data={'': ['cooker-menu-schema.json']},
packages=[
"cooker",
],
entry_points={
'console_scripts': [
'cooker = cooker.cooker:main',
],
},
install_requires=[
"jsonschema >= 3.2.0",
"urllib3 >= 1.22",
"pyjson5 >= 1.6.2"
],
project_urls={
'Bug Reports': 'https://github.com/cpb-/yocto-cooker/issues',
'Source': __url__,
},
)