-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (30 loc) · 867 Bytes
/
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
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "gram2vec"
version = "1.0.0"
description="Gram2vec is a document embedding software that maps strings to high-dimensional vectors based off stylistic features."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
#urls = {source = "https://github.com/iarpa-hiatus/eric-gram2vec"} #! will need to be updated
dependencies = [
"numpy",
"pandas",
"spacy",
"demoji",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.setuptools.package-data]
"*" = [ "*.txt"]