Skip to content

Commit dca5d0e

Browse files
committed
remove python install from workflow, update package metadata
1 parent 45a8e18 commit dca5d0e

2 files changed

Lines changed: 6 additions & 19 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ jobs:
3838
- name: checkout
3939
uses: actions/checkout@v4
4040

41-
- name: setup python
42-
shell: bash -l {0}
43-
run: |
44-
echo 'PYTHON_VERSIONS=("3.8.13")' > ~/dev/inversoft/fusionauth/fusionauth-developer/.env
45-
echo 'ACTIVE_PYTHON="3.8.13"' >> ~/dev/inversoft/fusionauth/fusionauth-developer/.env
46-
~/dev/inversoft/fusionauth/fusionauth-developer/setup.sh -o python
47-
4841
- name: compile
4942
shell: bash -l {0}
5043
run: sb compile
@@ -93,13 +86,6 @@ jobs:
9386
password = ${{ env.API_KEY }}
9487
EOF
9588
96-
- name: setup python
97-
shell: bash -l {0}
98-
run: |
99-
echo 'PYTHON_VERSIONS=("3.8.13")' > ~/dev/inversoft/fusionauth/fusionauth-developer/.env
100-
echo 'ACTIVE_PYTHON="3.8.13"' >> ~/dev/inversoft/fusionauth/fusionauth-developer/.env
101-
~/dev/inversoft/fusionauth/fusionauth-developer/setup.sh -o python
102-
10389
- name: release to svn
10490
if: inputs.command == 'release'
10591
shell: bash -l {0}

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,23 @@
66
setup(
77
name="fusionauth-client",
88
version="1.51.0",
9-
author="Tyler Scott",
9+
author="FusionAuth",
1010
author_email="dev@fusionauth.io",
1111
description="A client library for FusionAuth",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/FusionAuth/fusionauth-python-client",
15-
packages=find_packages(where='src/main/python'),
15+
packages=find_packages(where="src/main/python"),
1616
namespace_packages=["fusionauth"],
17-
package_dir={'': 'src/main/python'},
17+
package_dir={"": "src/main/python"},
1818
classifiers=[
1919
"Programming Language :: Python :: 3",
2020
"License :: OSI Approved :: Apache Software License",
2121
"Operating System :: OS Independent",
2222
"Topic :: Software Development :: Libraries",
2323
],
2424
install_requires=[
25-
'deprecated', 'requests',
26-
]
25+
"deprecated",
26+
"requests",
27+
],
2728
)

0 commit comments

Comments
 (0)