Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 Google Inc. All Rights Reserved.
# Copyright 2022 Google Inc. All Rights Reserved.

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -180,14 +180,20 @@ def run_tests(self):
sys.exit(pytest.main(self.pytest_args + cov))


_README_PATH = os.path.join(
os.path.dirname(os.path.realpath(__file__)), 'README.md')
with open(_README_PATH, 'rb') as fp:
LONG_DESCRIPTION = fp.read().decode('utf-8')


setup(
name='openhtf',
version='1.4.4',
version='1.5.2',
description='OpenHTF, the open hardware testing framework.',
author='John Hawley',
author_email='madsci@google.com',
maintainer='Joe Ethier',
maintainer_email='jethier@google.com',
url='https://github.com/google/openhtf',
author='The OpenHTF Authors',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
package_data={
'openhtf': [
Expand All @@ -196,7 +202,7 @@ def run_tests(self):
'output/web_gui/dist/img/*', 'output/web_gui/*.*'
]
},
python_requires='>=3.6',
python_requires='>=3.7',
cmdclass={
'build_proto': BuildProtoCommand,
'clean': CleanCommand,
Expand Down