-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 875 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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="insight_docclean",
version="0.1",
packages=find_packages(),
tests_require=["pytest", "pytest-cov"],
zip_safe=False,
url="https://github.com/devanshkv/insight_docclean/",
license="GNU Lesser General Public License v3.0",
author="Devansh Agarwal",
author_email="devansh.kv@gmail.com",
description="Clean your document images",
classifiers=[
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)