-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
38 lines (35 loc) · 1.17 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
import setuptools
if __name__ == "__main__":
setuptools.setup(
name='peslearn',
version="1.0.0",
description='Automated Construction of Machine Learning Models of Molecular Potential Energy Surfaces.',
author='Adam Abbott, Ian Beck',
url="https://github.com/CCQC/PES-Learn",
license='BSD-3C',
packages=setuptools.find_packages(),
install_requires=[
'numpy==1.24.4','GPy>=1.9','scikit-learn>=0.20','pandas>=2.0','hyperopt>=0.1.1','cclib>=1.6', 'torch>=1.0.1', 'joblib>=1.3.0', 'qcelemental>=0.27.1', 'qcengine>=0.26.0'
],
extras_require={
'docs': [
'sphinx==1.2.3',
'sphinxcontrib-napoleon',
'sphinx-book-theme',
'sphinx-copybutton'
'numpydoc',
],
'tests': [
'pytest-cov',
],
},
tests_require=[
'pytest-cov',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)