-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
36 lines (31 loc) · 911 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
[metadata]
name = tomopyui
url = https://github.com/samwelborn/tomopyui
author = Samuel Scott Welborn
author_email = [email protected]
version = attr: tomopyui._version.__version__
description = A graphical user interface for tomopy.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD license
classifiers =
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
project_urls =
Source Code =https://github.com/samwelborn/tomopyui
[options]
zip_safe = False
packages = find:
python_requires = >=3.7
[bdist_wheel]
universal = 1
[flake8]
exclude = docs, _version.py, .eggs, example
max-line-length = 88
docstring-convention = "numpy"
# ignore = D100, D213, D401, D413, D107, W503
[pycodestyle]
max-line-length = 88