-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
54 lines (49 loc) · 1.09 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
[metadata]
name = addie
description= Need a description
author = Dan, Wenduo, Jean
url = http://github.com/neutrons/addie
project_urls =
Bug Tracker = https://github.com/ornlneutronimaging/iMars3D/issues
long_description = file: README.md
license = The MIT License (MIT)
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
include_package_data = True
python_requires >= 3.8
packages = find:
install_requires =
periodictable
psutil
pystog
qtpy
simplejson
tests_require =
mock
pytest
pytest-mpl
pytest-qt
typing
versioningit
[options.entry_points]
console_scripts =
addie = addie.main:main
[options.packages.find]
exclude =
tests*
[options.package_data]
* =
*.ui
*.png
*.qrc
*.json
[flake8]
ignore = E114,E115,E116,E121,E123,E126,E133,E2,E704,E722,E741,E743,W503,F403,F405,F999
exclude = addie/icons/icons_rc.py
doctests = True
max-line-length = 130