Add and modify files for PyPI release
This commit is contained in:
Родитель
0703884ee8
Коммит
43a27dc37a
|
@ -40,3 +40,7 @@ rsconnect/
|
|||
__pycache__/
|
||||
.cache/
|
||||
.idea/
|
||||
|
||||
*/build/lib/
|
||||
Python/*.egg-info
|
||||
Python/dist/*.whl
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
# file GENERATED by distutils, do NOT edit
|
||||
README.md
|
||||
setup.cfg
|
||||
setup.py
|
||||
sqlmlutils\__init__.py
|
||||
sqlmlutils\connectioninfo.py
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
include README.md
|
||||
include LICENSE.txt
|
|
@ -7,7 +7,7 @@ sqlmlutils is a python package to help execute Python code on a SQL Server machi
|
|||
Download the zip package file from the dist folder.
|
||||
From a command prompt, run
|
||||
```
|
||||
python.exe -m pip install --upgrade --upgrade-strategy only-if-needed sqlmlutils-0.7.0.zip
|
||||
python.exe -m pip install --upgrade --upgrade-strategy only-if-needed sqlmlutils-0.7.1.zip
|
||||
```
|
||||
|
||||
Note: If you encounter errors installing the pymssql dependency and your client is a Windows machine, consider
|
||||
|
|
|
@ -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
|
||||
|
|
Двоичный файл не отображается.
|
@ -0,0 +1,3 @@
|
|||
# Inside of setup.cfg
|
||||
[metadata]
|
||||
description-file = README.md
|
|
@ -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='joz@microsoft.com',
|
||||
|
|
Загрузка…
Ссылка в новой задаче