Add and modify files for PyPI release

This commit is contained in:
Jonathan Zhu 2019-10-15 12:07:48 -07:00
Родитель 0703884ee8
Коммит 43a27dc37a
11 изменённых файлов: 18 добавлений и 6 удалений

4
.gitignore поставляемый
Просмотреть файл

@ -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

2
Python/MANIFEST.in Normal file
Просмотреть файл

@ -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

Двоичные данные
Python/dist/sqlmlutils-0.7.0.zip → Python/dist/sqlmlutils-0.7.1.zip поставляемый

Двоичный файл не отображается.

3
Python/setup.cfg Normal file
Просмотреть файл

@ -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',

Просмотреть файл