-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (47 loc) · 1.49 KB
/
setup.py
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
#!/usr/bin/env python
#
# libgutenberg setup.py
#
__version__ = '0.10.30'
from setuptools import setup
setup (
name = 'libgutenberg',
version = __version__,
package_dir = {
'libgutenberg': 'libgutenberg',
},
install_requires = [
'lxml>=4.9.1',
'pycountry',
'six>=1.4.1',
'sqlalchemy>=1.4.0,<2.00',
],
extras_require = {
'postgres': ['psycopg2',],
'covers': ['cairocffi==0.8.0'],
},
packages = [
'libgutenberg'
],
# metadata for upload to PyPI
author = "Marcello Perathoner",
maintainer = "Eric Hellman",
maintainer_email = "[email protected]",
description = "Common files used by Project Gutenberg python projects.",
long_description = "Useless as standalone install. Used only as requirement for other packages.",
license = "GPL v3",
keywords = "project gutenberg",
url = "https://github.com/gutenbergtools/libgutenberg/",
classifiers = [
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Topic :: Software Development :: Libraries :: Python Modules",
],
platforms = 'OS-independent',
)