Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Jan 11, 2024
1 parent 242ac24 commit 9115460
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

version='0.6.1-dev'
version = "0.6.1-dev"

setup(
name="bio-anglerfish",
version=version,
description="Anglerfish, a tool to demultiplex Illumina libraries from ONT data",
long_description=long_description,
long_description_content_type='text/markdown',
author='Remi-Andre Olsen',
author_email='[email protected]',
url='https://github.com/remiolsen/anglerfish',
license='MIT',
long_description_content_type="text/markdown",
author="Remi-Andre Olsen",
author_email="[email protected]",
url="https://github.com/remiolsen/anglerfish",
license="MIT",
python_requires=">=3.10",
packages = find_packages(),
package_data = {"":["config/adaptors.yaml"]},
packages=find_packages(),
package_data={"": ["config/adaptors.yaml"]},
install_requires=[
'python-levenshtein==0.23.0',
'biopython==1.79',
'numpy>=1.22.0',
'pyyaml==6.0'
"python-levenshtein==0.23.0",
"biopython==1.79",
"numpy>=1.22.0",
"pyyaml==6.0",
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 9115460

Please sign in to comment.