-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (33 loc) · 1006 Bytes
/
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
[metadata]
name = stashlib
version = attr: stash.__version__
author = Masroor Ehsan
author_email = [email protected]
url = https://github.com/masroore/stash.py
description = stash is an extensible and lightweight cache library for python
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
keywords = cache caching
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Other Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires > = 3.10
setup_requires =
setuptools >= 39.2.0
[flake8]
max-line-length = 100
exclude = .git, .tox, build
select = C, E, F, W, B, B950, I, N
ignore = F401, E501