1
- # Copyright 2014 Google Inc. All Rights Reserved.
1
+ # Copyright 2022 Google Inc. All Rights Reserved.
2
2
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -180,14 +180,20 @@ def run_tests(self):
180
180
sys .exit (pytest .main (self .pytest_args + cov ))
181
181
182
182
183
+ _README_PATH = os .path .join (
184
+ os .path .dirname (os .path .realpath (__file__ )), 'README.md' )
185
+ with open (_README_PATH , 'rb' ) as fp :
186
+ LONG_DESCRIPTION = fp .read ().decode ('utf-8' )
187
+
188
+
183
189
setup (
184
190
name = 'openhtf' ,
185
- version = '1.4.4 ' ,
191
+ version = '1.5.2 ' ,
186
192
description = 'OpenHTF, the open hardware testing framework.' ,
187
- author = 'John Hawley ' ,
188
-
189
- maintainer = 'Joe Ethier' ,
190
- maintainer_email = '[email protected] ',
193
+ url = 'https://github.com/google/openhtf ' ,
194
+ author = 'The OpenHTF Authors ' ,
195
+ long_description = LONG_DESCRIPTION ,
196
+ long_description_content_type = 'text/markdown ' ,
191
197
packages = find_packages (),
192
198
package_data = {
193
199
'openhtf' : [
@@ -196,7 +202,7 @@ def run_tests(self):
196
202
'output/web_gui/dist/img/*' , 'output/web_gui/*.*'
197
203
]
198
204
},
199
- python_requires = '>=3.6 ' ,
205
+ python_requires = '>=3.7 ' ,
200
206
cmdclass = {
201
207
'build_proto' : BuildProtoCommand ,
202
208
'clean' : CleanCommand ,
0 commit comments