blob: d6e5ab1af7fcd878a3aed401b99c170008dbb8d9 [file] [log] [blame]
Rob Mohr0ce48062020-01-15 14:08:43 -08001# Copyright 2020 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14"""env_setup module definition for PyOxidizer."""
15
16import unittest
17import setuptools
18
19
20def test_suite():
21 """Test suite for env_setup module."""
22 return unittest.TestLoader().discover('./', pattern='*_test.py')
23
24
25setuptools.setup(
26 name='pw_env_setup',
27 version='0.0.1',
28 author='Pigweed Authors',
29 author_email='pigweed-developers@googlegroups.com',
30 description='Environment setup for Pigweed',
31 packages=setuptools.find_packages(),
32 test_suite='setup.test_suite',
33 entry_points={'console_scripts': ['pw_env_setup = env_setup:main']},
34)