-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name='DataValuationPlatform',
version='1.4',
packages=find_packages(exclude=["Experiments*", ".ipynb_checkpoints*", "DataValuationPlatform.egg-info*"]),
include_package_data=True,
install_requires=[
'chembl-structure-pipeline==1.2.0',
'gpflow==2.8.0',
'imbalanced-learn==0.10.1',
'jupyter',
'ipykernel',
'matplotlib==3.6.0',
'pandas==1.4.0',
'rdkit==2022.9.5',
'scikit-learn==1.2.2',
'scipy==1.8.1',
'tensorflow==2.4.0',
'tensorflow-probability==0.12.1',
'tqdm==4.60.0',
'lightgbm==3.3.5',
'catboost==1.1.1',
],
python_requires='==3.8.*',
author='Joshua Hesse',
author_email='joshua.hesse@tum.de',
description='A modular platform to test data valuation methods on High Throughput Screen data applications',
long_description=open('README_PyPI.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/JoshuaHesse/DataValuationPlatform',
# Other parameters as needed
)