-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.34 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tree-interval"
version = "0.1.26"
description = "A Python package for managing and visualizing interval tree structures"
readme = "README.md"
authors = [{name = "Joao Lopes", email = "joaoslopes@gmail.com"}]
license = {file = "LICENSE"}
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Debuggers",
"Operating System :: OS Independent",
"Natural Language :: English",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://github.com/kairos-xx/tree-interval"
Repository = "https://github.com/kairos-xx/tree-interval.git"
[tool.ruff]
[tool.ruff.lint]
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
max-line-length = 79
ignore = ['W291', 'W292', 'W293', 'E203','E701','W504']
exclude = [
".*",
"__pycache__",
"__init__.py",
]
[tool.flake8]
max-line-length = 79
ignore = ['E203', 'E701', "W503", "W504"]