-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (36 loc) · 1.33 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
[tool.poetry]
name = "pyfilehandling"
version = "3.2.2"
description = "A Python package for file manipulation operations."
authors = ["Jeel Dobariya <dobariyaj34@gmail.com>"]
license = "MIT"
homepage = "https://jeeldobariya38.github.io/PyFileHandling/"
repository = "https://github.com/JeelDobariya38/PyFileHandling"
documentation = "https://jeeldobariya38.github.io/PyFileHandling/pyfilehandling.html"
keywords = ['file handling', 'file manipulation', 'file operation', 'utility']
readme = "README.md"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{ include = 'pyfilehandling' }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/JeelDobariya38/PyFileHandling/issues"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.lint.dependencies]
flake8 = ">=6.1,<8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"