-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 967 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools
setuptools.setup(
name='capalyzer',
version='2.16.0',
description="Parsing functionality for the metasub CAP",
author="David C. Danko",
author_email='dcdanko@gmail.com',
url='https://github.com/dcdanko/capalyzer',
packages=setuptools.find_packages(),
package_dir={'capalyzer': 'capalyzer'},
install_requires=[
'click',
'pandas',
'scipy',
'numpy',
'umap-learn',
],
entry_points={
'console_scripts': [
'capalyzer=capalyzer.cli:main'
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
package_data={'capalyzer': [
'packet_parser/ncbi_tree/*.dmp.gz',
'packet_parser/microbe-directory.csv',
]},
)