-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (44 loc) · 1.23 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
48
[build-system]
requires = ["setuptools >= 65.5.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "citylex"
version = "0.1.16"
description = "Builds a multi-source English lexicon"
readme = "README.md"
requires-python = ">= 3.8"
license = { text = "Apache 2.0" }
authors = [{email = "[email protected]"}, {name = "Kyle Gorman"}]
keywords = [
"computational linguistics",
"morphology",
"natural language processing",
"phonology",
"phonetics",
"speech",
"language",
]
dependencies = [
"openpyxl >= 3.1.5",
"pandas >= 1.2.2",
"pynini >= 2.1.6.post1",
"requests >= 2.25.1",
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
]
[project.urls]
homepage = "https://github.com/kylebgorman/citylex"
[project.scripts]
citylex = "citylex.populate:main"
[tool.setuptools]
packages = ["citylex"]