forked from CCQC/Quax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 890 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 890 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
31
32
33
34
35
import setuptools
if __name__ == "__main__":
setuptools.setup(
name='quax',
version="0.1.1",
description='Arbitrary order derivatives of electronic structure computations.',
author='Adam Abbott',
author_email='adabbott@uga.edu',
url="none",
license='BSD-3C',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.7',
'jax>=0.2.9',
'jaxlib>=0.1.61',
'h5py>=2.8.0'
],
extras_require={
'tests': [
'pytest-cov',
],
},
tests_require=[
'pytest-cov',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)