-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
36 lines (34 loc) · 1.13 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ultk"
version = "0.0.1c"
authors = [
{ name="Chris Haberland", email="[email protected]"},
{ name="Nathaniel Imel", email="[email protected]"},
{ name="Shane Steinert-Threlkeld", email="[email protected]" },
]
description = "ULTK is a software library that aims to support efficient communication analyses of natural language. This is a line of research that aims to explain why natural languages have the structure that they do in terms competing pressures to minimize cognitive complexity and maximize communicative accuracy."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
license = {file = "LICENSE.txt"}
dependencies = [
"mypy",
"numpy",
"nltk",
"pyyaml",
"pandas",
"plotnine",
"pathos",
"pytest",
"rdot",
]
[project.urls]
"Homepage" = "https://clmbr.shane.st/ultk"
"Bug Tracker" = "https://github.com/CLMBRs/ultk/issues"