-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (58 loc) · 2.42 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
from setuptools import setup, find_packages
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pathogen-embed',
version='3.1.0',
description='Reduced dimension embeddings for pathogen sequences',
url='https://github.com/blab/pathogen-embed/',
author='Sravani Nanduri <[email protected]> , John Huddleston <[email protected]>',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
project_urls = {
"Documentation": "https://blab.github.io/pathogen-embed/",
"Bug Reports": "https://github.com/blab/pathogen-embed/issues",
"Source Code": "https://github.com/blab/pathogen-embed/tree/main",
"Change Log": "https://github.com/blab/pathogen-embed/tree/main/CHANGES.md",
},
package_dir={"": "src"},
packages=find_packages(where="src", exclude=['test']),
install_requires=['numpy',
'pandas',
"biopython",
'scikit-learn >=1.3,<1.5',
'umap-learn ==0.5.*',
# Pin Numba at maximum supported version for the pinned umap-learn version.
# For more details see:
# https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit
'numba <0.59.0',
'matplotlib',
'hdbscan'
],
extras_require = {
'dev': [
"cram >=0.7",
]
},
classifiers=[
"Operating System :: OS Independent",
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points = {
"console_scripts": [
"pathogen-embed = pathogen_embed.__main__:run_embed",
"pathogen-distance = pathogen_embed.__main__:run_distance",
"pathogen-cluster = pathogen_embed.__main__:run_cluster",
"pathogen-cluster-mutations = pathogen_embed.__main__:run_cluster_mutations",
]
}
)