Skip to content

Commit 3e0a6fc

Browse files
committed
Add setup.py file.
1 parent ea7100a commit 3e0a6fc

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
)

0 commit comments

Comments
 (0)