-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (19 loc) · 805 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
import pathlib
from setuptools import find_packages, setup
ROOT = pathlib.Path(__file__).resolve().parent
if __name__ == "__main__":
README = (ROOT / "README.md").read_text(encoding="utf-8")
requirements = (ROOT / "requirements.txt").read_text(encoding="utf-8").splitlines()
setup(
name="neural-deskew",
version="0.0.1",
url="https://github.com/DiTo97/neural-deskew",
author="Federico Minutoli",
author_email="[email protected]",
description="A lightweight neural network for document image skew estimation",
long_description=README,
long_description_content_type="text/markdown",
python_requires=">=3.10",
packages=find_packages(exclude=["toolchain"]),
install_requires=requirements,
)