-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (55 loc) · 1.68 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
60
61
62
63
64
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "russiannames"
version = "2.0.0"
description = "Russian names parser, gender identification and processing tools"
readme = "README.md"
license = { text = "BSD-3-Clause" }
authors = [{ name = "Ivan Begtin", email = "ivan@begtin.tech" }]
requires-python = ">=3.9"
keywords = ["russian", "names", "surnames", "gender"]
dependencies = [
"duckdb>=0.9",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: Russian",
"Programming Language :: Python :: 3",
"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 :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/datacoon/russiannames"
Documentation = "https://github.com/datacoon/russiannames#readme"
Repository = "https://github.com/datacoon/russiannames"
[project.optional-dependencies]
test = ["pytest>=7"]
dev = [
"pytest>=7",
"ruff>=0.4",
"coverage>=7",
"build>=1",
"twine>=4",
]
[project.scripts]
rusnames = "russiannames.cli:main"
[tool.setuptools]
packages = ["russiannames"]
[tool.setuptools.package-data]
russiannames = ["data/*.parquet", "py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
# pyflakes (F), pycodestyle errors (E), warnings (W), isort (I)
select = ["E", "F", "W", "I"]