1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
from setuptools import setup
pname = "parallel-fastq-dump"
exec(list(filter(
lambda l: l.startswith("__version__"),
open(pname).read().split("\n")
))[0])
setup(
name=pname,
version=__version__,
author="Renan Valieris",
author_email="renan.valieris@cipe.accamargo.org.br",
description="parallel fastq-dump wrapper",
license="MIT",
url="https://github.com/rvalieris/parallel-fastq-dump",
scripts=[pname],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)
|