-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (40 loc) · 1.02 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
[metadata]
name = pyweight
author = Adam Fontenot
author_email = [email protected]
url = https://github.com/afontenot/pyweight
project_urls =
Bug Tracker = https://github.com/afontenot/pyweight/issues
version = attr: pyweight.__VERSION__
description: A simple weight management program
long_description = file: README.md
license = GPL3-only
license_file = LICENSE
classifiers =
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]
zip_safe = false
python_requires >= 3.6
packages = find:
test_suite = tests
setup_requires = setuptools >= 47
install_requires =
PyQt5
matplotlib
scipy
[flake8]
select = C,E,F,W,B,B950
extend-ignore = E203,E501
[tool:pytest]
qt_api=pyqt5
[options.entry_points]
console_scripts =
pyweight = pyweight.__main__:main
[options.package_data]
pyweight = ui/*, images/*
[options.packages.find]
exclude = .