Skip to content

Commit

Permalink
fix error in config and clean ups
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronwtr committed Nov 7, 2023
1 parent a78a2c3 commit 58e1656
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 14 deletions.
Empty file added configs/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions src/configs/pubmed.yml → configs/pubmed.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
user:
email: {YOUR_EMAIL}

search:
retmax: 500
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from setuptools import setup
import io
from setuptools import setup, find_packages

setup(
name='geneius',
version='1.2',
version='1.3',
packages=['src'],
url='https://github.com/aaronwtr/geneius',
description='A tool for disease-gene evidence search and explanation',
long_description=io.open('README.md', 'r', encoding='utf-8').read(),
long_description='More information on the GitHub repository: https://github.com/aaronwtr/geneius',
license='MIT',
author='Aaron Wenteler',
email='[email protected]',
Expand Down
4 changes: 0 additions & 4 deletions src/__main__.py

This file was deleted.

2 changes: 0 additions & 2 deletions src/configs/claude.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self):

@staticmethod
def config():
with open('geneius/configs/pubmed.yml', 'r') as file:
with open('configs/pubmed.yml', 'r') as file:
config = yaml.safe_load(file)
return config

Expand Down

0 comments on commit 58e1656

Please sign in to comment.