-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
48 lines (44 loc) · 1.33 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
[metadata]
name = django-hybrid-attributes
version = 0.1.0
description = A Django plugin for mimicking the power of SQLAlchemy hybrid_property and hybrid_method
long_description = file: README.md
long_description_content_type = text/markdown
author = Filipe Waitman
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
project_urls =
Source = https://github.com/filwaitman/django-hybrid-attributes
[options]
include_package_data = true
packages = django_hybrid_attributes
[flake8]
max-line-length = 132
exclude = .tox,.git
ignore = F405,W504
[isort]
line_length = 132
multi_line_output = 5
known_django = django
known_tests = tests
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER,TESTS
[coverage:run]
source = django_hybrid_attributes