-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Raúl Fernández Díaz
committed
Mar 6, 2024
1 parent
33d512d
commit 29c0fba
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/usr/bin/env python | ||
|
||
"""The setup script.""" | ||
import os | ||
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', | ||
'numpy', | ||
'rdkit', | ||
'tqdm' | ||
] | ||
|
||
test_requirements = requirements | ||
|
||
setup( | ||
author="Raul Fernandez-Diaz", | ||
author_email='[email protected]', | ||
python_requires='>=3.9', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
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', | ||
name='hestia', | ||
packages=find_packages(), | ||
test_suite='tests', | ||
tests_require=test_requirements, | ||
url='https://github.com/IBM/Hestia', | ||
version='0.1.0', | ||
zip_safe=False, | ||
) |