Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
fix pycli pylint (#1671)
Browse files Browse the repository at this point in the history
  • Loading branch information
chicm-ms authored Oct 31, 2019
1 parent 3a249ef commit e3bf1c5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/sdk/pycli/setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import setuptools

setuptools.setup(
name = 'nnicli',
version = '999.0.0-developing',
packages = setuptools.find_packages(),
name='nnicli',
version='999.0.0-developing',
packages=setuptools.find_packages(),

python_requires = '>=3.5',
install_requires = [
python_requires='>=3.5',
install_requires=[
'requests'
],

author = 'Microsoft NNI Team',
author_email = '[email protected]',
description = 'nnicli for Neural Network Intelligence project',
license = 'MIT',
url = 'https://github.com/Microsoft/nni',
author='Microsoft NNI Team',
author_email='[email protected]',
description='nnicli for Neural Network Intelligence project',
license='MIT',
url='https://github.com/Microsoft/nni',
)

0 comments on commit e3bf1c5

Please sign in to comment.