-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
52 lines (47 loc) · 1.2 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
[metadata]
name = django-spicy-id
version = 1.0.0
description = Fancy ID fields for django models.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mik3y/django-spicy-id
author = mik3y
author_email = [email protected]
license = MIT
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
keywords = django timeseries
platforms =
any
[options]
packages = find:
package_dir = =src
install_requires =
Django>=2.2
python_requires = >=3.10.0
[options.packages.find]
where = src
[coverage:paths]
source =
src
.tox/*/site-packages
[coverage:run]
branch = True
include = */django_spicy_id/*
parallel = True
[coverage:report]
show_missing = True