forked from c-w/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.31 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
"""Library installer."""
import codecs
from setuptools import find_packages
from setuptools import setup
install_requires = [
'bsddb3>=6.1.0',
'future>=0.15.2',
'rdflib>=4.2.0,<5.0.0',
'requests>=2.5.1',
'setuptools>=18.5',
'rdflib-sqlalchemy>=0.3.8',
'SPARQLWrapper>=1.8.2',
'pyparsing<3.0.0',
]
with codecs.open('README.rst', encoding='utf-8') as fobj:
long_description = fobj.read()
setup(
name='Gutenberg',
version='0.8.2',
author='Clemens Wolff',
author_email='clemens.wolff+pypi@gmail.com',
packages=find_packages(exclude=['tests']),
url='https://github.com/c-w/Gutenberg',
download_url='https://pypi.python.org/pypi/Gutenberg',
license='Apache Software License',
description='Library to interface with Project Gutenberg',
long_description=long_description,
install_requires=sorted(install_requires),
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities'
])