-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 853 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
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
REQUIREMENTS = ["lxml", "cssselect"]
DEV_REQUIREMENTS = [
"tox",
"pytest",
"pytest-mock",
"pytest-random-order",
"pytest-mypy",
"pytest-flake8",
"pytest-black",
"pytest-cov",
"lxml-stubs",
]
setup(
name="hocr-parser",
version="0.3.0",
author="jlieth",
license="GNU General Public License v3 (GPLv3)",
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*"]),
python_requires=">=3.6",
install_requires=REQUIREMENTS,
tests_require=DEV_REQUIREMENTS,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
)