Skip to content

Commit 99c42d6

Browse files
Marc SerratMarc Serrat
authored andcommitted
Fixed Setup.py and missing Twine
1 parent 23a149d commit 99c42d6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
pip install -r requirements/test.txt
2121
pip install -r requirements/sdk.txt
2222
pip install pytest-cov
23+
pip install twine
2324
- name: Linting
2425
run: |
2526
flake8 connect

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626

2727
setup(
2828
name='connect-sdk',
29-
author='Ingram Micro',
30-
version='0.0.0',
29+
author='CloudBlue Connect',
3130
keywords='sdk connect connect automation',
3231
packages=PACKAGES,
3332
description='Connect Python SDK',
@@ -37,7 +36,8 @@
3736
license='Apache Software License',
3837
include_package_data=True,
3938
install_requires=install_reqs,
40-
39+
setup_requires=['setuptools_scm', 'pytest-runner', 'wheel'],
40+
use_scm_version=True,
4141
classifiers=[
4242
'Development Status :: 5 - Production/Stable',
4343

0 commit comments

Comments
 (0)