Permalink
Cannot retrieve contributors at this time
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?
bubble_gun/setup.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (29 sloc)
1.08 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" | |
]} | |
) |