-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 715 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 715 Bytes
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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='gldm',
version='0.2',
packages=find_packages(),
install_requires=[
'torch',
# 'torch-cluster==1.6.0',
# 'torch-scatter==2.1.0',
# 'torch-sparse==0.6.15',
# 'torchvision==0.14.0',
# 'torchaudio==0.13.0',
# 'torchmetrics==0.11.0',
'torch-geometric',
'omegaconf',
'pandas',
'pytorch_lightning',
'tqdm',
'rdkit',
'tensorflow',
'tensorboard',
'einops',
],
long_description=long_description,
long_description_content_type='text/markdown',
)