-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
57 lines (51 loc) · 1.19 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
[metadata]
name = pyrs
description= Data reduction and visualization of neutron data measured at the HFIR HB2B instrument
author = Chris
uthor_email = [email protected]
url = http://github.com/neutrons/PyRS
project_urls =
Bug Tracker = https://github.com/neutrons/PyRS/issues/new
long_description = file: README.rst
license = The MIT License (MIT)
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
[options]
include_pacage_data = True
python_requires >= 3.10
packages = find:
install_requires =
configparser
mantidworkbench
qtpy
uncertainties
vtk
tests_require =
codecov
qtpy
pytest
pytest-cov
pytest-qt
typing
versioningit
[options.package_data]
* =
*.ui
*.png
*.qrc
*.json
[bdist]
formats = rpm
[bdist_rpm]
requires = python, numpy, python-matplotlib, PyQt5, mantidworkbench
build_requires = python, python-setuptools, PyQt5, versioningit~=1.1
doc_files = README.rst
[flake8]
exclude = .git,build,docs,prototypes,versioneer.py,pyrs/icons/
max-line-length = 119
[mypy]
ignore_missing_imports = True
namespace_packages = True