-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
26 lines (24 loc) · 1.04 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
from setuptools import setup
setup(name='skmer',
version='3.1.0',
description='Assembly-free and alignment-free tool for estimating genomic distances between genome-skims',
author='Shahab Sarmashghi',
author_email='ssarmash@ucsd.edu',
license='BSD-3-Clause',
url='https://github.com/shahab-sarmashghi/Skmer',
packages=['skmer'],
package_dir={'skmer': 'skmer'},
install_requires=['numpy>=1.15.1', 'scipy>=1.1.0', 'pandas>=0.23.4'],
provides=["skmer"],
entry_points={
'console_scripts': ['skmer=skmer.__main__:main']
},
classifiers=["Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
)