Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/usr/bin/env python3
import sys
from distutils.core import setup
from setuptools import setup, find_packages
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 3)
# This check and everything above must remain compatible with Python 2.7.
if CURRENT_PYTHON < REQUIRED_PYTHON:
sys.stderr.write("BubbleGun requires Python 3.3 or higher and "
"you current verions is {}".format(CURRENT_PYTHON))
sys.exit(1)
setup(name='BubbleGun',
version='1.0',
description='Detection of Bubble and Superbubble chains in genome graphs',
author='Fawaz Dabbaghie',
author_email='fawaz.dabbaghie@helmholtz-hips.de',
url='https://fawaz-dabbaghieh.github.io/',
packages=find_packages(),
# scripts=['bin/main.py'],
license="LICENSE.TXT",
long_description=open("README.md").read(),
install_requires=["protobuf == 3.11.3",
"pystream-protobuf == 1.5.1"],
# other arguments here...
entry_points={
"console_scripts": [
"BubbleGun=BubbleGun.main:main"
]}
)