-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (36 loc) · 1.17 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
import setuptools
with open("requirements.txt", 'r') as fp:
install_requires = fp.read()
with open("README.md", 'r') as fp:
long_description = fp.read()
setuptools.setup(
name="page-xml-draw",
version="0.0.1",
author="Lucas Sulzbach, João Okimoto",
author_email="[email protected]",
description="A powerful CLI tool for visualization and encoding of "
"PAGE-XML files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GBN-DBP/page_xml_draw",
packages=setuptools.find_packages(),
install_requires=install_requires,
package_data={
"": ["schema.json"]
},
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
],
entry_points={
"console_scripts": [
"page-xml-draw=page_xml_draw:main",
]
},
python_requires='>=3.7',
)