generated from jeffjennings/py_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (42 loc) · 1.6 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
# to set version dynamically: https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
[metadata]
name = memoria-gui
version = attr: memoria.__version__
author = Jeff Jennings
author_email = [email protected]
description = GUI for memorizing vocabulary, grammar, phrases of a foreign language
long_description = file: README.md
long_description_content_type = text/markdown
license = LGPLv3
license_file = LICENSE.txt
include_package_data = True
url = https://github.com/jeffjennings/memoria
project_urls =
Bug Tracker = https://github.com/jeffjennings/memoria/issues
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords =
language
Italian
[options]
packages = memoria
# python_requires docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires = >=3.9
# PEP 440 - pinning package versions: https://www.python.org/dev/peps/pep-0440/#compatible-release
install_requires =
numpy>=1.12
matplotlib>=3.1.0
# extras_require syntax:
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html?highlight=options.extras_require#configuring-setup-using-setup-cfg-files
[options.extras_require]
test = pytest
coverage>=6.2
coverage-badge>=1.1.0