Skip to content

Commit

Permalink
🛠️ Setup file for PIP publishing
Browse files Browse the repository at this point in the history
  • 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.
53 changes: 53 additions & 0 deletions setup.py
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,
)

0 comments on commit 29c0fba

Please sign in to comment.