forked from KaulichLab/ReCo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 829 Bytes
/
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
import setuptools
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name="reco",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Martin Wegner",
author_email="[email protected]",
description="A Python library to find gRNA read counts in fastq files.",
long_description=long_description,
long_description_content_type="text/x-rst",
packages=setuptools.find_packages(),
classifiers=[
"Programming language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requirements=requirements,
)