-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (57 loc) · 1.57 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
55
56
57
58
59
60
[project]
name = "pydracor"
version = "2.0.0"
description = "Python package which provides access to the DraCor API."
readme = "README.md"
keywords = [
"api",
"corpus",
"dracor",
"drama",
"drama corpus",
"pydracor",
"wrapper",
]
license = "MIT"
authors = [
{ name = "Eduard Grigoriev", email = "happypuffin7@gmail.com" },
{ name = "Henny Sluyter-Gäthje", email = "sluytergaeth@uni-potsdam.de" },
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.28.2",
]
[project.optional-dependencies]
test = [
"pytest~=7.4",
"pytest-cov~=4.1",
]
[project.urls]
Repository = "https://github.com/dracor-org/pydracor.git"
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling"]
[tool.hatch.build.targets.sdist]
include = ["pydracor/*.py"]
exclude = ["pydracor/test_dracor.py"]
[tool.hatch.build.targets.wheel]
include = ["pydracor/*.py"]
exclude = ["pydracor/test_dracor.py"]