forked from oxpig/kasearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 748 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (25 loc) · 748 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='kasearch',
version='0.0.12',
description='KA-Search: Rapid and exhaustive sequence identity search of known antibodies',
license='BSD 3-clause license',
maintainer='Tobias Hegelund Olsen; Brennan Abanades kenyon',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
packages=find_packages(include=('kasearch', 'kasearch.*')),
package_data={
'': ['*.txt']
},
install_requires=[
'pandas',
'joblib',
'requests',
'numpy',
'jax',
'jaxlib'
],
)