-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
50 lines (45 loc) · 966 Bytes
/
setup.cfg
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
47
48
49
50
[metadata]
name = qimpy
author = QimPy Collaboration
author_email = [email protected]
description = Quantum-Integrated Multi-PhYsics
long_description = file: README.md
long_description_content_type = text/markdown
url = https://qimpy.org
project_urls =
Bug Tracker = https://github.com/shankar1729/qimpy/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
include-package-data = True
python_requires = >=3.9
install_requires =
torch >1.10
pyyaml
numpy
scipy
mpi4py
h5py
psutil
svg.path
[options.packages.find]
where = src
[options.package_data]
* = py.typed
[versioneer]
VCS = git
style = pep440
versionfile_source = src/qimpy/_version.py
versionfile_build = qimpy/_version.py
tag_prefix = v
parentdir_prefix = qimpy-
[tool:pytest]
minversion = 6.0
addopts = -v
testpaths =
src