https://github.com/MrOlm/drep
Raw File
Tip revision: 876b7714fbe6cd5571f97def7a7f987ec8689bfb authored by Matt Olm on 01 March 2024, 00:16:14 UTC
Merge pull request #226 from MrOlm/v4
Tip revision: 876b771
setup.py
from setuptools import setup, find_packages
import os

def version():
    setupDir = os.path.dirname(os.path.realpath(__file__))
    versionFile = open(os.path.join(setupDir, 'drep', 'VERSION'))
    return versionFile.read().strip()

setup(name='drep',
      version=version(),
      description='De-replication of microbial genomes assembled from multiple samples',
      url='https://github.com/MrOlm/drep',
      author='Matt Olm',
      author_email='mattolm@berkeley.edu',
      license='MIT',
      package_data={'drep': ['VERSION']},
      packages=find_packages(),
      scripts=['bin/dRep', 'helper_scripts/parse_stb.py', 'helper_scripts/ScaffoldLevel_dRep.py'],
      install_requires=[
          'numpy',
          'pandas',
          'seaborn',
          'matplotlib',
          'biopython',
          'scikit-learn',
          'tqdm',
          'pytest'
      ],
      zip_safe=False)
back to top