-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (38 loc) · 1.04 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
[project]
name = "nameisok"
version = "0.1.7"
description = "A utility package for checking if a package name is available on PyPI."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Sermet Pekin", email = "[email protected]" }
]
license = {text = "MIT"}
keywords = ["pypi", "package availability", "name checker", "available", "utility"]
dependencies = [
"fuzzywuzzy>=0.18.0",
"pytest>=8.3.3",
"python-levenshtein>=0.26.1",
"requests>=2.32.3",
]
[project.urls]
repository = "https://github.com/SermetPekin/nameisok"
documentation = "https://github.com/SermetPekin/nameisok#readme"
issue_tracker = "https://github.com/SermetPekin/nameisok/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
nameisok = "nameisok.cli:main"
[tool.setuptools]
packages = ["nameisok"]
[tool.setuptools.package-data]
nameisok = ["*"]
[tool.setuptools.exclude-package-data]
nameisok = ["raw/*"]
[tool.ruff]
exclude = [
"*.ipynb",
'ignore*.py'
# "tests/*",
]