-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from evolv-ai/release/v1.0.0
Release/v1.0.0
- Loading branch information
Showing
21 changed files
with
26 additions
and
18 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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,4 +1,4 @@ | ||
requests==2.21.0 | ||
coverage==4.5.2 | ||
flake8==3.7.5 | ||
PyYAML==3.13 | ||
PyYAML==5.1.1 |
File renamed without changes.
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,3 +1,3 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
description-file = README.md | ||
description-file = README.md |
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,22 +1,27 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('README.md', 'r') as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name='evolv', | ||
version='0.5.0', | ||
name='evolvcli', | ||
version='1.0.0', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
license='Apache License 2.0', | ||
description='CLI user for creating and maintaining Evolv experiments.', | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
author='Frazer Bayley', | ||
author_email='[email protected]', | ||
url='https://github.com/evolv-ai/experiment-management-cli', | ||
download_url='https://github.com/evolv-ai/experiment-management-cli/archive/0.5.0.tar.gz', | ||
download_url='https://github.com/evolv-ai/experiment-management-cli/archive/1.0.0.tar.gz', | ||
keywords=['cli', 'Evolv', 'experiments', 'optimization'], | ||
install_requires=[ | ||
'Click', 'requests' | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Natural Language :: English', | ||
|
@@ -26,6 +31,6 @@ | |
], | ||
entry_points=''' | ||
[console_scripts] | ||
evolv=evolv.cli:cli | ||
evolv=evolvcli.cli:cli | ||
''', | ||
) |