-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 797 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 797 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
"""
Simple setup script to install the nimble_build_system as a package
"""
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = 'nimble',
description = 'Python module for generating any nimble configuration',
packages=find_packages(),
version = '0.0.1',
python_requires='>=3.10',
install_requires=requirements,
extras_require={
'dev': [
'pylint',
'colorama',
'pytest'
]
},
entry_points={
'console_scripts': [
'gen_nimble_conf_options = nimble_build_system.utils.gen_nimble_conf_options:main',
'nimble_devices_updater = nimble_build_system.utils.nimble_devices_updater:main'
]
}
)