-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (56 loc) · 1.84 KB
/
pyproject.toml
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
60
61
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-chromepdf"
description = "A small Python 3 library that uses Selenium and Google Chrome to convert HTML into a PDF."
readme = "README.md"
requires-python = "~=3.6"
license = {text = "BSD"}
authors = [
{name = "Andrew Kukwa", email = "[email protected]"}
]
maintainers = [
{name = "Andrew Kukwa", email = "[email protected]"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: OS Independent',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
'selenium<5,>=3',
]
dynamic = ["version"]
[project.urls]
homepage ='https://github.com/imsweb/django-chromepdf'
repository ='https://github.com/imsweb/django-chromepdf'
changelog = 'https://github.com/imsweb/django-chromepdf/blob/master/CHANGELOG.md'
[tool.setuptools.dynamic]
version = {attr = "chromepdf.__version__"}
[tool.setuptools.packages.find]
include = ["chromepdf*"]
[tool.isort]
line_length = 120
combine_as_imports = true
known_first_party = ["chromepdf","testapp"]
indent=" "
multi_line_output = 4
sections = ["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
default_section = "THIRDPARTY"
lines_between_sections = 1
lines_after_imports = 2