Skip to content

Commit

Permalink
install requires go in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
wbazant committed Apr 1, 2022
1 parent 96ce05e commit fc8fe5c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
pysam
scipy
numpy
sklearn
.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = (this_directory / "README.md").read_text()

setuptools.setup(name='marker_alignments',
version='0.4',
version='0.4.1',
description="Process and summarise alignments of metagenomic sequencing reads to reference databases of marker genes",
long_description = long_description,
long_description_content_type="text/markdown",
Expand All @@ -16,6 +16,7 @@
entry_points={"console_scripts": [
"marker_alignments = marker_alignments.main:main",
]},
install_requires=["pysam", "scipy", "numpy", "sklearn"],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
Expand Down
6 changes: 6 additions & 0 deletions ship.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

set -euo pipefail
tox
python3 -m build
python3 -m twine upload dist/*

0 comments on commit fc8fe5c

Please sign in to comment.