-
Notifications
You must be signed in to change notification settings - Fork 33
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 #49 from microsoft/JonathanZhu11/releaseForPyPI
Add and modify files for PyPI release
- Loading branch information
Showing
9 changed files
with
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,7 @@ rsconnect/ | |
__pycache__/ | ||
.cache/ | ||
.idea/ | ||
|
||
*/build/lib/ | ||
Python/*.egg-info | ||
Python/dist/*.whl |
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include README.md | ||
include LICENSE.txt |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
python.exe setup.py sdist --formats=zip | ||
python.exe -m pip install --upgrade --upgrade-strategy only-if-needed dist\sqlmlutils-0.7.0.zip | ||
python.exe -m pip install --upgrade --upgrade-strategy only-if-needed dist\sqlmlutils-0.7.1.zip |
Binary file renamed
BIN
+21.1 KB
Python/dist/sqlmlutils-0.7.0.zip → Python/dist/sqlmlutils-0.7.1.zip
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
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,15 +1,16 @@ | ||
# Copyright(c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT license. | ||
|
||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
setup( | ||
name='sqlmlutils', | ||
packages=['sqlmlutils', 'sqlmlutils/packagemanagement'], | ||
version='0.7.0', | ||
url='https://github.com/Microsoft/sqlmlutils', | ||
version='0.7.1', | ||
url='https://github.com/Microsoft/sqlmlutils/Python', | ||
license='MIT License', | ||
description='A client side package for working with SQL Machine Learning Python Services. ' | ||
desciption='A client side package for working with SQL Server', | ||
long_description='A client side package for working with SQL Server Machine Learning Python Services. ' | ||
'sqlmlutils enables easy package installation and remote code execution on your SQL Server machine.', | ||
author='Microsoft', | ||
author_email='[email protected]', | ||
|