-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 860 Bytes
/
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
from setuptools import setup, find_packages
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name='wbc',
version='0.0.0',
author='Maciej Brencz',
author_email='maciej.brencz@gmail.com',
description='Set of scripts used to import and process publications from dLibre in DJVU format',
url='https://github.com/macbre/wbc',
packages=find_packages(),
install_requires=[
'coverage==7.6.4',
'docopt==0.6.2',
'lxml>=3.4.0', # use the version provided by python-lxml package
'pytest==8.3.3',
'readtime==3.0.0',
'requests==2.32.3',
],
include_package_data=True,
entry_points={
'console_scripts': [
'fetch=scripts.fetch:main',
'generate_xml=scripts.xml:generate',
'tidy=scripts.tidy:main',
],
}
)