Skip to content

Commit

Permalink
Updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
asistradition committed Apr 24, 2020
1 parent 69bdb29 commit 7dfc7b6
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@

install_requires = ["numpy", "pandas", "HTSeq", "pybedtools", "scipy", "pathos"]
tests_require = ["coverage", "nose", "pysam"]
version = "0.1.0"
version = "0.1.1"

# Description from README.md
base_dir = os.path.dirname(os.path.abspath(__file__))
long_description = "\n\n".join([open(os.path.join(base_dir, "README.md"), "r").read()])

setup(
name = "srrTomat0",
version = version,
description = "SRR Pipelines: Building matrixes from raw read data",
name="srrTomat0",
version=version,
description="SRR Pipelines: Building matrixes from read data",
long_description=long_description,
long_description_content_type="text/markdown",
url = "https://github.com/cskokgibbs/srrTomat0",
author = "Claudia Skok Gibbs",
author_email = "[email protected]",
maintainer = "Claudia Skok Gibbs",
maintainer_email = "[email protected]",
packages=find_packages(include=["srrTomat0", "srrTomat0.*"], exclude=["tests", "*.tests"]),
zip_safe = False,
install_requires = install_requires,
tests_require = tests_require,
test_suite = "nose.collector",
url="https://github.com/flatironinstitute/srrTomat0",
author="Chris Jackson",
author_email="[email protected]",
maintainer="Chris Jackson",
maintainer_email="[email protected]",
packages=find_packages(include=["srrTomat0", "srrTomat0.*"]),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
test_suite="nose.collector",
)

0 comments on commit 7dfc7b6

Please sign in to comment.