-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (44 loc) · 1.2 KB
/
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
[metadata]
name = pwproc
version = attr: pwproc.__version__
description = Output parsers and utilities for Quantum ESPRESSO
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aschankler/pwproc
author = Aaron Schankler
author_email = ams19@sas.upenn.edu
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Physics
project_urls =
Bug Reports = https://github.com/aschankler/pwproc/issues
[options]
packages = find:
install_requires =
numpy
scipy
python_requires = >=3.8
package_dir =
=src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pwproc = pwproc.cli:cli
[flake8]
max-line-length = 88
select = C,E,F,W,B,B901,B950,SIM,C4
ignore = E203,E501,SIM106
max-complexity = 10
exclude = .git, __pycache__, build, dist
per-file-ignores =
__init__.py: F401