Skip to content

Commit 5b83f25

Browse files
committed
bump version 0.1.8
1 parent f878348 commit 5b83f25

File tree

3 files changed

+41
-21
lines changed

3 files changed

+41
-21
lines changed

django_sonar/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
__all__ = ["default_app_config", "APP_NAME", "VERSION"]
2+
13
default_app_config = 'django_sonar.apps.DjangoSonarConfig'
4+
APP_NAME = "django_sonar"
5+
VERSION = "0.1.8"

pyproject.toml

Lines changed: 34 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,48 @@
11
[build-system]
2-
requires = ["hatchling"]
32
build-backend = "hatchling.build"
3+
requires = [
4+
"hatchling",
5+
]
46

57
[project]
6-
dynamic = ["license"]
78
name = "django_sonar"
8-
version = "0.1.7"
9+
description = "The missing debug tool for Django, inspired by Telescope."
10+
readme = "README.md"
11+
license = {file = "LICENSE"}
912
authors = [
1013
{ name = "Metalogico", email = "michele.brandolin@gmail.com" },
1114
]
12-
description = "The missing debug tool for Django"
13-
readme = "README.md"
1415
requires-python = ">=3.8"
1516
classifiers = [
16-
'Development Status :: 3 - Alpha',
17-
'Intended Audience :: Developers',
18-
'License :: OSI Approved :: MIT License',
19-
'Operating System :: OS Independent',
20-
'Framework :: Django',
21-
'Framework :: Django :: 4.0',
22-
'Framework :: Django :: 5.0',
23-
'Programming Language :: Python :: 3',
24-
'Programming Language :: Python :: 3.7',
25-
'Programming Language :: Python :: 3.8',
26-
'Programming Language :: Python :: 3.9',
27-
'Programming Language :: Python :: 3.10',
28-
'Programming Language :: Python :: 3.11',
29-
'Programming Language :: Python :: 3.12',
17+
"Development Status :: 3 - Alpha",
18+
"Environment :: Web Environment",
19+
"Framework :: Django",
20+
"Framework :: Django :: 4.2",
21+
"Framework :: Django :: 5.0",
22+
"Intended Audience :: Developers",
23+
"License :: OSI Approved :: MIT License",
24+
"Operating System :: OS Independent",
25+
"Programming Language :: Python",
26+
"Programming Language :: Python :: 3 :: Only",
27+
"Programming Language :: Python :: 3.8",
28+
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
30+
"Programming Language :: Python :: 3.11",
31+
"Programming Language :: Python :: 3.12",
3032
]
33+
dynamic = ["version"]
34+
dependencies = [
35+
"Django>=4.2.9",
36+
"sqlparse>=0.2",
37+
]
38+
39+
[tool.hatch.build.targets.wheel]
40+
packages = ["django_sonar"]
41+
42+
[tool.hatch.version]
43+
path = "django_sonar/__init__.py"
3144

3245
[project.urls]
3346
Homepage = "https://github.com/metalogico/django-sonar"
34-
Issues = "https://github.com/metalogico/django-sonar/issues"
47+
Issues = "https://github.com/metalogico/django-sonar/issues"
48+
Download = "https://pypi.org/project/django-sonar/"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
from setuptools import setup, find_packages
22

3+
import django_sonar
4+
35
setup(
46
name='django_sonar',
5-
version='0.1.7',
7+
version=django_sonar.VERSION,
68
author='Metalogico',
79
author_email='michele.brandolin@gmail.com',
810
description='The missing debug tool for Django',

0 commit comments

Comments
 (0)