Skip to content

Commit c9bcf76

Browse files
committed
refactoring of the automation
1 parent 469b69e commit c9bcf76

File tree

4 files changed

+12
-57
lines changed

4 files changed

+12
-57
lines changed

.github/workflows/evaluate_pylint_score.py

-29
This file was deleted.

.github/workflows/evaluete_push.yml

-23
This file was deleted.

.github/workflows/python-publish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,18 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.x'
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install setuptools wheel twine
25-
python -m pip install -r requirements.txt # Install requirements.txt
2625
- name: Build and publish
2726
env:
2827
TWINE_USERNAME: mvincig11
2928
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3029
run: |
3130
git fetch --all --tags
3231
python setup.py sdist bdist_wheel
33-
twine upload dist/*
32+
twine upload dist/*

setup.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
setuptools.setup(
3030
name="cf-remote",
3131
version=cf_remote_version,
32-
author="Northern.tech, Inc.",
32+
author="Marco Vinciguerra",
3333
author_email="contact@northern.tech",
3434
description="Tooling to deploy CFEngine (and much more)",
3535
long_description=long_description,
@@ -46,6 +46,14 @@
4646
python_requires=">=3.5",
4747
entry_points={"console_scripts": ["cf-remote = cf_remote.main:main"]},
4848
install_requires=[
49-
"apache-libcloud >= 3.3.1",
49+
"langchain==0.1.6",
50+
"langchain_community==0.0.19",
51+
"langchain_core==0.1.22",
52+
"langchain_openai==0.0.5",
53+
"beautifulsoup4==4.12.3",
54+
"pandas==2.0.3",
55+
"python-dotenv==1.0.1",
56+
"tiktoken>=0.5.2,<0.6.0",
57+
"tqdm==4.66.1",
5058
],
5159
)

0 commit comments

Comments
 (0)