1
- [tool . poetry ]
1
+ [project ]
2
2
name = " smartmin"
3
3
version = " 5.1.1"
4
4
description = " Scaffolding system for Django object management."
5
- authors = [
" Nyaruka Ltd <[email protected] >" ]
5
+ license = { text = " BSD" }
6
+ authors = [
7
+ {
"name" =
" Nyaruka" ,
"email" =
" [email protected] " }
8
+ ]
6
9
readme = " README.md"
7
- license = " BSD"
8
- classifiers =[
10
+ requires-python = " >=3.10,<3.13"
11
+ dependencies = [
12
+ " Django (>= 5.0,< 5.2)" ,
13
+ " celery (>=5.1)" ,
14
+ " redis (>=3.5.3)" ,
15
+ " sqlparse (>=0.4.1,<0.6.0)" ,
16
+ " xlrd (>=1.2.0)" ,
17
+ " xlwt (>=1.3.0)" ,
18
+ ]
19
+
20
+ classifiers = [
9
21
" Development Status :: 5 - Production/Stable" ,
10
22
" Environment :: Web Environment" ,
11
23
" Intended Audience :: Developers" ,
@@ -18,19 +30,14 @@ packages = [
18
30
{ include = " smartmin" },
19
31
]
20
32
21
- [tool . poetry .urls ]
33
+ [project .urls ]
22
34
repository = " http://github.com/nyaruka/smartmin"
23
35
36
+
24
37
[tool .poetry .dependencies ]
25
- python = " ^3.10"
26
- Django = " >= 5.0, < 5.2"
27
- celery = " >= 5.1"
28
- redis = " >= 3.5.3"
29
- sqlparse = " >=0.4.1,<0.6.0"
30
- xlrd = " ^1.2.0"
31
- xlwt = " ^1.3.0"
32
38
33
- [tool .poetry .dev-dependencies ]
39
+
40
+ [tool .poetry .group .dev .dependencies ]
34
41
black = " ^24.3.0"
35
42
coverage = {extras = [" toml" ], version = " ^7.2.7" }
36
43
isort = " ^5.12.0"
@@ -62,5 +69,5 @@ known_django = ["django"]
62
69
source = [" smartmin" ]
63
70
64
71
[build-system ]
65
- requires = [" poetry-core>=1 .0.0" ]
66
- build-backend = " poetry.core.masonry.api"
72
+ requires = [" poetry-core>=2.0.0,<3 .0.0" ]
73
+ build-backend = " poetry.core.masonry.api"
0 commit comments