-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated status with description, fixed naming in fastai (#64)
- Loading branch information
1 parent
b395621
commit 84a4309
Showing
4 changed files
with
10 additions
and
6 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,6 +2,9 @@ | |
|
||
|
||
def main(): | ||
with open('README.md') as readme_file: | ||
readme = readme_file.read() | ||
|
||
extras = { | ||
'bots': ['python-telegram-bot'], | ||
'hpo': ['scikit-optimize==0.5.2', 'scipy'], | ||
|
@@ -20,12 +23,13 @@ def main(): | |
|
||
setup( | ||
name='neptune-contrib', | ||
version='0.13.7', | ||
description='Neptune Python library contributions', | ||
version='0.13.8', | ||
description='Neptune.ml contributions library', | ||
author='neptune.ml', | ||
support='[email protected]', | ||
author_email='[email protected]', | ||
url="https://github.com/neptune-ml/neptune-contrib", | ||
long_description='Neptune Python library contributions', | ||
long_description=readme, | ||
license='MIT License', | ||
install_requires=base_libs, | ||
extras_require=extras, | ||
|