-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
63 lines (58 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
SCRIPTS = []
SCRIPTS.extend([os.path.join("scripts", script)
for script in os.listdir(os.path.join(os.path.dirname(__file__), "scripts"))
if script.endswith(".py")])
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.md'), 'r') as fid:
LONG_DESCRIPTION = fid.read()
setup(
name="CMash",
version="0.5.1",
author="David Koslicki",
author_email="[email protected]",
description=("Fast and accurate set similarity estimation via containment min hash (for genomic datasets)."),
long_description=LONG_DESCRIPTION,
#license="BSD-3-Clause", # see classifiers
keywords="jaccard min hash containment genomics metagenomics",
url="https://github.com/dkoslicki/CMash",
packages=['CMash'],
install_requires=[
'khmer>=2.1.1',
'screed',
'h5py',
'numpy',
'blist',
'argparse',
'pandas>=0.21.1',
'setuptools>=24.2.0',
'six',
'scipy',
'matplotlib',
'marisa-trie',
'hydra',
'pycairo'
],
zip_safe=False,
package_data={'CMash': ['data/*.fna', 'tests/Organisms/*.fna.gz']},
scripts=SCRIPTS,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
)