-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 1.1 KB
/
setup.py
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
29
30
import os
from setuptools import setup, find_packages
version_string = os.environ.get("WIPERTOOLS_VERSION", "0.0.0.dev0")
setup(
name="wipertools",
version=version_string,
packages=find_packages(exclude=("tests",)),
# https://setuptools.pypa.io/en/latest/userguide/datafiles.html
include_package_data=True,
install_requires=[],
entry_points={
"console_scripts": [
"wipertools=fastqwiper.wipertools:main"
]
},
author="Tommaso Mazza",
author_email="[email protected]",
description="A suite of programs that drop or fix pesky lines in FASTQ files and that split or merge FASTQ chunk files.",
long_description=open("README.md").read() if os.path.exists("README.md") else "",
long_description_content_type="text/markdown",
url="https://github.com/mazzalab/fastqwiper",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)