-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 887 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='seqtop',
version='0.1',
author='Adam Ewing',
author_email='[email protected]',
description=("monitor sequencing from the command line because GUIs have too many pixels"),
license='MIT',
url='https://github.com/adamewing/seqtop',
download_url='https://github.com/adamewing/seqtop/archive/refs/tags/0.1.tar.gz',
scripts=['seqtop'],
packages=find_packages(),
install_requires = [
'minknow-api',
'plotext',
'numpy',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)