-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (43 loc) · 1.34 KB
/
Copy pathsetup.cfg
File metadata and controls
46 lines (43 loc) · 1.34 KB
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 = ciphers
description = A package that makes it easy to play around with different ciphering and deciphering algorithms
maintainer = Norbert Acedański
author = Norbert Acedański
url = https://github.com/norbert-acedanski/ciphers
platforms = any
licence = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Framework :: tox
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = ciphers
zip_safe = True
python_requires = !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
install_requires = tox >=3.14
setup_requires = setuptools_scm[toml] >=5
[options.extras_require]
testing =
pytest >=6.2.5
tox >= 3.14
[tox:tox]
minversion = 3.8
isolated_build = true
skip_missing_interpreters = true
envlist = py38, py39, py310, py311, py312, py313
[testenv]
description = run test suite under {basepython}
deps =
-r{toxinidir}/requirements_dev.txt
extras = testing
pytest --basetemp={envtmpdir}