-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (43 loc) · 1.46 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
from LSD import __version__
import os.path
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="LSD-Bubble",
version=__version__,
packages=find_packages(),
zip_safe=False,
install_requires=['networkx>=2.1'],
author="Fabian Gaertner",
author_email="fabian@bioinf.uni-leipzig.de",
url="https://github.com/Fabianexe/Superbubble",
description="Detect all superbubbles in a graph.",
license="BSD 3-Clause",
long_description=read('docs/README.rst'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
entry_points={
'console_scripts': [
'lsd = LSD.__main__:main'
]
},
command_options={
'build_sphinx': {
'version': ('setup.py', __version__),
'release': ('setup.py', __version__)
}
},
keywords="graph, superbubble, de Bruijn graph, Genome assembly, Linear time algorithm"
)