-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (36 loc) · 1.11 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'pysam>=0.14.0',
'tqdm>=4.23.0',
'numpy>=1.14.0',
'pandas>=0.22.0',
'mypy-protobuf>=1.3',
"grpcio-tools>=1.11",
]
setup(
name="mincall",
version='0.1.0',
description='',
url='https://github.com/nmiculinic/minion-basecaller',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
author='Neven Miculinic',
author_email='[email protected]',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Bio-Informatics',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
project_urls={ # Optional
'Source': 'https://github.com/nmiculinic/minion-basecaller/',
},
)