Select Git revision
Christian Faber authored
setup.py 1019 B
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="BioHelpers_FABER",
version="0.2.4",
description="Small collection of useful scripts for the computational work with RNA Data.",
url="https://gitlab.jsc.fz-juelich.de/faber1/biohelpers",
package_dir={"": "src"},
packages=find_packages(where="src"),
long_description=long_description,
long_description_content_type="text/markdown",
author="Christian Faber",
author_email="c.faber@fz-juelich.de",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programmin Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Utilities",
],
install_requires=["numpy", "biopython", "matplotlib"],
extras_require={"dev": ["twine"]},
python_requires=">=3.11",
)