-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (41 loc) · 1.31 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
from setuptools import setup, find_packages
_dct = {}
with open('pyscfad/version.py') as f:
exec(f.read(), _dct)
__version__ = _dct['__version__']
setup(
name='pyscfad',
version=__version__,
description='PySCF with autodiff',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Xing Zhang',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(exclude=["examples","*test*"]),
python_requires='>=3.9',
install_requires=[
'numpy>=1.17',
'scipy',
'h5py',
'jax>=0.4.14',
'jaxlib>=0.4.14',
'pyscf>=2.3',
'pyscfadlib>=0.1.4',
#'pyscf-properties @ git+https://github.com/fishjojo/properties.git@ad',
],
url='https://github.com/fishjojo/pyscfad',
license='MIT',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
zip_safe=False,
)