Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Jul 4, 2024
1 parent 67bbe10 commit 10618f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob
from distutils.core import setup
from os.path import join, abspath, dirname
from setuptools import find_packages

base_dir = abspath(dirname(__file__))
requirements_txt = join(base_dir, 'requirements.txt')
Expand All @@ -10,7 +11,7 @@

setup(
name='eva_sub_cli',
packages=['eva_sub_cli', 'eva_sub_cli.validators'],
packages=find_packages(),
package_data={'eva_sub_cli': ['nextflow/*', 'etc/*', 'VERSION', 'jinja_templates/*']},
version=version,
license='Apache',
Expand Down

0 comments on commit 10618f9

Please sign in to comment.