Skip to content

Commit

Permalink
update github workflow. increment checkout version to 4. working on
Browse files Browse the repository at this point in the history
setup.py issue
  • Loading branch information
tomlue committed Apr 15, 2024
1 parent 1c20843 commit a8c73f7
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 21 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # Updated to latest version
- uses: actions/checkout@v4 # Updated to latest version
- name: Set up Python
uses: actions/setup-python@v4 # Updated to latest version
uses: actions/setup-python@v5 # Updated to latest version
with:
python-version: '3.9'
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
4 changes: 0 additions & 4 deletions README

This file was deleted.

14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Sysrev Python Client

The Sysrev package provides tools to interact with the sysrev.com API efficiently and programmatically. This package includes:

1. **SysrevClient**: A client object for utilizing the sysrev.com API.
2. **(Coming Soon)** A method for synchronizing local sysrev projects with their remote counterparts on sysrev.com.

## Installation

To install the Sysrev package, use pip:

```bash
pip install sysrev
```
32 changes: 18 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
from setuptools import setup

setup(name='sysrev',
version='1.2.2',
description='Gets annotations from Sysrev API',
url='https://github.com/sysrev/PySysrev',
author='Thomas Luechtefeld',
author_email='[email protected]',
packages=['sysrev'],
install_requires=[
'pandas',
'requests',
'pathlib'
],
python_requires='>=3.6',
zip_safe=False)
# Assuming your README file is in Markdown
with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='sysrev',
version='1.2.2',
description='get sysrev project data and use the sysrev api',
long_description=long_description,
long_description_content_type='text/markdown', # Specify the content type here
url='https://github.com/sysrev/PySysrev',
author='Thomas Luechtefeld',
author_email='[email protected]',
packages=['sysrev'],
install_requires=['requests'],
python_requires='>=3.6',
zip_safe=False
)

0 comments on commit a8c73f7

Please sign in to comment.