-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version, lint some files with YAPF
- Loading branch information
Showing
4 changed files
with
27 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,24 @@ | |
from setuptools.command.install import install | ||
import os | ||
|
||
|
||
def get_requirements(*requirements_file_paths): | ||
requirements = [] | ||
for requirements_file_path in requirements_file_paths: | ||
with open(requirements_file_path) as requirements_file: | ||
for line in requirements_file: | ||
if line[0:2] != '-r' and line.find('git') == -1 and line.find('codalabworker') == -1: | ||
if line[0:2] != '-r' and line.find('git') == -1 and line.find( | ||
'codalabworker') == -1: | ||
requirements.append(line) | ||
return requirements | ||
|
||
setup(name='codalabworker', | ||
version='0.2.23', | ||
|
||
setup( | ||
name='codalabworker', | ||
version='0.2.27', | ||
description='Worker for CodaLab, a platform for reproducible computation', | ||
long_description='To use your own hardware in CodaLab Worksheets, visit https://github.com/codalab/codalab-worksheets/wiki/Execution#running-your-own-worker. You can find the code at https://github.com/codalab/codalab-cli.', | ||
long_description= | ||
'To use your own hardware in CodaLab Worksheets, visit https://github.com/codalab/codalab-worksheets/wiki/Execution#running-your-own-worker. You can find the code at https://github.com/codalab/codalab-cli.', | ||
url='https://github.com/codalab/codalab-cli', | ||
author='CodaLab', | ||
author_email='[email protected]', | ||
|