Skip to content
Snippets Groups Projects
Select Git revision
  • 9639f238fe593966df097cf3400eb55201e06c4f
  • main default protected
  • index_out_issue
  • 3.2
  • 0.3.1
  • 0.2.11
  • 0.2.10
  • 0.2.9
  • 0.2.8
  • 0.2.7
  • 0.2.6
  • 0.2.5
  • 0.2.4
  • 0.2.2
  • 0.2.1
  • 0.1.23
  • 0.1.22
  • 0.1.21
  • 0.1.20
  • 0.1.19
  • 0.1.18
  • 0.1.17
  • 0.1.16
23 results

setup.py

Blame
  • 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",
    )