File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright (c) 2020, XMOS Ltd, All rights reserved
2+ import setuptools
3+
4+ # Another repository might depend on python code defined in this one. The
5+ # procedure to set up a suitable python environment for that repository may
6+ # pip-install this one as editable using this setup.py file. To minimise the
7+ # chance of version conflicts while ensuring a minimal degree of conformity,
8+ # the 3rd-party modules listed here require the same major version and at
9+ # least the same minor version as specified in the requirements.txt file.
10+ # The same modules should appear in the requirements.txt file as given below.
11+ setuptools .setup (
12+ name = 'tools_xmostest' ,
13+ package_dir = {'' : 'lib/python' },
14+ packages = setuptools .find_packages (where = "lib/python" ),
15+ install_requires = [
16+ "flake8~=3.8" ,
17+ "tools_xmostest" ,
18+ ],
19+ )
You can’t perform that action at this time.
0 commit comments