-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
72 lines (66 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = atomphys
version = 0.0.5.dev0
author = "Matt Grau"
author_email = "[email protected]"
license = MIT,
description = Atomic Physics for Python
long_description = file: README.md
long_description_content_type = text/markdown
keywords = AMO, atomic physics
url = https://github.com/mgrau/atomphys
project_urls =
Bug Tracker = https://github.com/mgrau/atomphys/issues
classifiers =
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
Development Status :: 3 - Alpha
# Define that your audience are developers
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Physics
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
include_package_data = True
install_requires =
pint
[options.package_data]
* = *.json
[zest.releaser]
create-wheel = yes
[check-manifest]
ignore =
requirements_dev.txt
.pre-commit-config.yaml
pull_request_template.md
# don't include examples
examples/*
# don't include docs source files
mkdocs.yml
docs/**
requirements_docs.txt
binder/*
[flake8]
ignore=
# line too long - let black worry about that
E501
# line break before binary operator
W503
# Do not use variables/functions named 'I' or 'O'
# keep these in for physics reasons
E741
E743
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9
[isort]
default_section=THIRDPARTY
known_first_party=atomphys
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True