Skip to content

Commit

Permalink
fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Apr 12, 2022
1 parent 9a50f5f commit e598992
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
# License: 3-clause BSD
from setuptools import setup, find_namespace_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
import subprocess

_MAJOR = 0
_MINOR = 9
Expand Down Expand Up @@ -34,9 +36,11 @@
'Topic :: Scientific/Engineering :: Physics']
}

NAME = "bioconvert"


setup(
name = "sequana_bioconvert",
name = "sequana_{}".format(NAME),
version = version,
maintainer = metainfo['authors']['main'][0],
maintainer_email = metainfo['authors']['main'][1],
Expand All @@ -51,10 +55,9 @@
classifiers = metainfo['classifiers'],

# package installation
packages = ["sequana_pipelines.bioconvert",
'sequana_pipelines.bioconvert.data' ],
packages = ["sequana_pipelines.bioconvert"],

install_requires = "sequana",
install_requires = open("requirements.txt").read(),

# This is recursive include of data files
exclude_package_data = {"": ["__pycache__"]},
Expand Down

0 comments on commit e598992

Please sign in to comment.