-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.16 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "childes_processor"
authors = [
{ name="Zebulon Goriely", email="zebulon.goriely@cl.cam.ac.uk" },
]
description = "Library for downloading CHILDES, preprocessing it, and creating phonemic transcriptions in IPA."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
license = { file = "LICENSE"}
keywords = ["CHILDES", "phonology", "phonetics", "linguistics", "phone"]
dependencies = [
"childespy>=1.0.0",
"g2p_plus>=0.1.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/codebyzeb/childes-processor"
Issues = "https://github.com/codebyzeb/childes-processor/issues"
[project.scripts]
childes_processor = "childes_processor.main:main"
[tool.setuptools.dynamic]
version = {attr = "childes_processor.__version__"}
[tool.setuptools]
packages = ["childes_processor"]
[tool.setuptools.package-data]
childes_processor = [
"config/*",
"src/*"]