-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (38 loc) · 1.02 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
import setuptools
setuptools.setup(
name='DIME',
version='0.0.1',
author='<anonymized>',
author_email='<anonymized>',
description='CMI Estimation',
long_description='''
Dynamic feature selection by estimating conditional mutual information.
''',
long_description_content_type='text/markdown',
url='',
packages=['dime'],
install_requires=[
'numpy',
'fastai>=2.5.3',
'kaggle>=1.5.13',
'opencv-python',
'pandas',
'scikit-learn',
'tensorboard>=2.10.1',
'timm>=0.6.12',
'torch>=1.13.1',
'torchvision>=0.14.1',
'tqdm',
'pandas>=1.5.2',
'torchmetrics>=0.11.0',
'pytorch_lightning==1.9.4'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'
],
python_requires='>=3.7',
)