-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 751 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 751 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='SPACE2',
version='1.0.1',
description='Structural clustering of antibody CDR loops',
license='BSD 3-clause license',
author=['Fabian Spoendlin','Brennan Abanades'],
maintainer='Fabian Spoendlin',
long_description=long_description,
long_description_content_type='text/markdown',
maintainer_email=['fabian.spoendlin@stats.ox.ac.uk'],
include_package_data=True,
packages=find_packages(include=('SPACE2', 'SPACE2.*')),
install_requires=[
'numba>=0.51.0',
'joblib>=1.0.0',
'scipy',
'pandas',
'scikit-learn>=1.4.0',
],
)