forked from Alexanders101/SPANet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.45 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
40
41
42
43
44
45
46
from setuptools import find_packages, setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="spanet",
packages=find_packages(),
version="2.1.1",
description="Symmetry Preserving Attention Networks",
long_description=long_description,
long_description_content_type='text/markdown',
author="Alexander Shmakov",
author_email="[email protected]",
url="https://github.com/Alexanders101/SPANet",
license="BSD-3-Clause",
install_requires=[
'torch>=1.12',
'numpy>=1.22',
'h5py>=3.7',
'numba>=0.55',
'pytorch-lightning',
'tqdm',
'sympy',
'pyyaml',
'opt_einsum',
'scikit-learn'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: GPU :: NVIDIA CUDA :: 11.3',
'Environment :: GPU :: NVIDIA CUDA :: 11.6',
'Environment :: GPU :: NVIDIA CUDA :: 11.7',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Physics',
'Typing :: Typed'
],
)