This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 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
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', | ||
) |