-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (46 loc) · 1.81 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
49
50
51
52
53
54
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "align"
description = "Analyzing Linguistic Interaction with Generalizable techNiques. Read the latest ALIGN tutorials."
readme = "README.md"
authors = [
{ name = "Nicholas Duran", email = "[email protected]" },
{ name = "Alexandra Paxton", email = "[email protected]" },
{ name = "Riccardo Fusaroli", email = "[email protected]" },
]
requires-python = ">=3.10"
keywords = ["linguistic-analysis", "linguistic-alignment", "corpus-tools", "conversation-analysis", "ngram-analysis", "text-analysis", "nltk", "word2vec", "notebooks"]
license = {text = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Framework :: Jupyter",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"numpy >= 1.22.3",
"scipy >= 1.7.3",
"gensim >= 4.1.2",
"pandas >= 1.4.2",
"nltk >= 3.7",
"ipython >= 8.3.0",
]
# dynamic = ["version"] ## not sure what to make of this - just set it for now?
version = "0.1.1"
# [project.optional-dependencies]
# pdf = ["ReportLab>=1.2", "RXP"]
# rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
[project.urls]
Homepage = "https://github.com/nickduran/align-linguistic-alignment"
# [tool.setuptools.packages.find]
# where = ["src"]
# [tool.setuptools.exclude-package-data]
# mypkg = ["__pycache__"]
# [project.scripts] ## entry points, I think this takes the place of having something like __main__.py
# my-script = "my_package.module:function"
# [tool.bumpver] # consider using for dynamic updating of version number
# [tool.bumpver.file_patterns]
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/