-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.13 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
import os
from setuptools import setup, find_packages
from slappy import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
name = 'SlaPPy'
setup(
name=name,
version=__version__,
packages=find_packages(),
url='https://github.com/Fabianexe/SlaPPy',
license='GNU GPLv3',
author='Fabian Gärtner',
author_email='[email protected]',
description='SlaPPy - Squiggle and Sequence Plotter in Python',
install_requires=['dash>=1.8', 'h5py>=2.10', 'numpy>=1.18', 'dash_daq>=0.3.3', 'plotly>=4.5', 'gunicorn',
'dash-bootstrap-components>=0.8.2', 'flask-caching>=1.8'],
entry_points={
'console_scripts': [
'slappy = slappy.__main__:main'
]
},
long_description=read('docs/README.md'),
long_description_content_type='text/markdown',
command_options={
'build_sphinx': {
'project': ('setup.py', name),
'version': ('setup.py', __version__),
'release': ('setup.py', __version__)
}
},
keywords="nanopore, fast5, multi fast5, sequencing, plotting"
)