-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
71 lines (64 loc) · 1.67 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
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "olipy/__init__.py"
[project]
name = "olipy"
dynamic = ["version"]
description = "Library for artistic text generation"
readme = "README.md"
license = 'GPL-3.0-or-later'
requires-python = ">=3.9.0"
authors = [
{ name = "Leonard Richardson", email = "[email protected]" },
]
keywords = [
"art supplies"
]
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Text Processing',
'Topic :: Artistic Software',
]
dependencies = [
'beautifulsoup4',
'requests',
'textblob',
'wordfilter',
'syllables',
]
[project.optional-dependencies]
internetarchive = [
"internetarchive",
]
[project.urls]
Homepage = "https://github.com/leonardr/olipy/"
[project.scripts]
'olipy.apollo' = 'olipy.example:apollo'
'olipy.board_games' = 'olipy.example:board_games'
'olipy.corrupt' = 'olipy.example:corrupt'
'olipy.dinosaurs' = 'olipy.example:dinosaurs'
'olipy.eater' = 'olipy.example:eater'
'olipy.ebooks' = 'olipy.example:ebooks'
'olipy.gibberish' = 'olipy.example:gibberish'
'olipy.mashteroids' = 'olipy.example:mashteroids'
'olipy.sonnet' = 'olipy.example:sonnet'
'olipy.typewriter' = 'olipy.example:typewriter'
'olipy.words' = 'olipy.example:words'
[tool.hatch.build.targets.sdist]
include = [
"/olipy/**/*.py",
"/olipy/**/*.json",
"/LICENSE",
"/CHANGELOG",
]
[tool.hatch.build.targets.wheel]
include = [
"/olipy/**/*.py",
"/olipy/**/*.json",
"/olipy/LICENSE",
"/olipy/CHANGELOG",
]