Skip to content

Commit e9ab119

Browse files
authored
Merge pull request #126 from b00lean/build_issues
Fixed build issues with pip install -e .
2 parents 93c5265 + 09d098d commit e9ab119

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[build-system]
2+
requires = ["setuptools","pysam","numpy","cython","joblib"]
3+
build-backend = "setuptools.build_meta"
4+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
define_macros=pysam.get_defines(),
3939
include_dirs=[numpy.get_include()]+pysam.get_include(),
4040
packages = ['tiddit'],
41-
install_requires = ['numpy','pysam'],
41+
install_requires = ['numpy','pysam','joblib'],
4242
entry_points = {'console_scripts': ['tiddit = tiddit.__main__:main']},
4343

4444
)

0 commit comments

Comments
 (0)