Skip to content
Snippets Groups Projects
Commit 4cbe9d6d authored by Sander Bollen's avatar Sander Bollen
Browse files

find_packages

parent 51d9fb26
No related branches found
No related tags found
No related merge requests found
Pipeline #2432 failed
......@@ -3,5 +3,4 @@ build:
- apt-get update -y
- apt-get install -y python-dev python-pip
- pip install --upgrade pip setuptools wheel
- pip install -r requirements.txt
- python setup.py develop
- pip install '.'
......@@ -9,7 +9,7 @@ setup.py
from os.path import abspath, dirname, join
from setuptools import setup
from setuptools import setup, find_packages
from Cython.Build import cythonize
from vtools import __version__
......@@ -27,7 +27,7 @@ setup(
author="Sander Bollen",
author_email="a.h.b.bollen@lumc.nl",
license="MIT",
packages=["vtools"],
packages=find_packages(),
install_requires=[
"click",
"cyvcf2",
......@@ -47,4 +47,4 @@ setup(
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
ext_modules=cythonize("vtools/*.pyx")
)
\ No newline at end of file
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment