-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.47 KB
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
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jdatetime"
description = "Jalali datetime binding for python"
readme = "README.rst"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"jalali-core>=1.0",
]
authors = [
{name = "Milad Rastian", email = "eslashmili@gmail.com"},
]
license = "PSF-2.0"
license-files = ["LICENSE"]
keywords = ["Jalali implementation of Python datetime"]
urls = {Homepage = "https://github.com/slashmili/python-jalali"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
[tool.setuptools]
packages = ["jdatetime"]
platforms = ["any"]
[tool.setuptools.dynamic]
version = {attr = "jdatetime.__VERSION__"}
[tool.ruff]
line-length = 110
format.quote-style = 'single'
lint.isort.combine-as-imports = true
lint.extend-select = [
'E501', # line-too-long
'W605', # invalid-escape-sequence
'FA', # flake8-future-annotations
'I', # isort
'UP', # pyupgrade
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"tox>=4.30.3",
]