-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (40 loc) · 1.16 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
readme = (this_directory / "README.md").read_text()
requirements = [
'networkx',
'scipy',
'scikit-learn',
'pandas',
'polars',
'numpy',
'tqdm'
]
test_requirements = requirements
setup(
author="Raul Fernandez-Diaz",
author_email='[email protected]',
python_requires='>=3.9',
classifiers=[
],
description="Suite of tools for analysing the independence between training and evaluation biosequence datasets and to generate new generalisation-evaluating hold-out partitions",
entry_points={
},
install_requires=requirements,
license="MIT",
long_description=readme + '\n\n',
include_package_data=True,
keywords='hestia',
data_files=[('hestia/utils/mmseqs_fake_prefilter.sh')],
name='hestia-good',
packages=find_packages(),
long_description_content_type="text/markdown",
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/IBM/Hestia-GOOD',
version='0.0.37',
zip_safe=False,
)