-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 897 Bytes
/
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
from setuptools import setup
try:
import _compile
except ImportError:
import sys
from pathlib import Path
sys.path.append(str(Path(__file__).resolve().parent))
import _compile
if __name__ == "__main__":
_compile.main()
setup(
description="Python/Fortran toolkit for representation of molecules and solids for machine learning of properties of molecules and solids.",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
],
keywords=["qml", "quantum chemistry", "machine learning"],
)