-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (71 loc) · 2.07 KB
/
setup.py
File metadata and controls
83 lines (71 loc) · 2.07 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
#
# ebookconverter distribution
#
from setuptools import setup
VERSION = '0.11.4'
setup (
name = 'ebookconverter',
version = VERSION,
packages = [
'ebookconverter',
'ebookconverter.writers',
'ebookconverter.utils'
],
scripts = [
'scripts/autodelete',
'scripts/autorebuild',
'scripts/cron-csv-catalog',
'scripts/cron-dopush-social.sh',
'scripts/cron-dopush.sh',
'scripts/cron-jekyll.sh',
'scripts/cron-rebuild-files.sh',
'scripts/cron-reindex.sh',
'scripts/dev-jekyll.sh',
'scripts/ebookconverter',
'scripts/cron-latesttitles.sh',
'scripts/cron-rdf-catalog',
'scripts/cron-rebuild-files.sh',
'scripts/cron-reindex.sh',
'scripts/fileinfo',
'scripts/make_csv',
'scripts/pgmarc',
'scripts/postbluesky',
'scripts/prod-jekyll.sh',
'scripts/reload_workflow',
'scripts/txt-tarball'
],
install_requires = [
'ebookmaker>=0.13.7',
'setproctitle==1.1.10',
'requests_oauthlib>=1.2.0',
'rdflib>=4.2.2',
'qrcode>=6.1',
'libgutenberg[postgres]>=0.10.33',
'pymarc>=5.2.3',
'tiktoken',
'openai',
'anthropic',
],
package_data = {
},
data_files = [
('', ['CHANGES', 'README.md']),
],
# metadata for upload to PyPI
author = "Eric Hellman",
author_email = "eric@hellman.org",
description = "The Project Gutenberg tool to orchestrate ebook generation.",
long_description = open ('README.md').read(),
license = "GPL v3",
url = "https://github.com/gutenbergtools/ebookconverter/",
classifiers = [
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Other Audience",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
],
platforms = 'OS-independent'
)