|
| 1 | +# Copyright 2021 The Layout Parser team. All rights reserved. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
1 | 15 | from setuptools import setup, find_packages |
2 | 16 | import os |
3 | 17 |
|
|
10 | 24 |
|
11 | 25 | setup(name = "layoutparser", |
12 | 26 | version = __version__, |
13 | | - author = "Zejiang Shen Ruochen Zhang", |
| 27 | + author = "Zejiang Shen, Ruochen Zhang, and Layout Parser Model Contributors", |
| 28 | + author_email = "[email protected]", |
14 | 29 | license = "Apache-2.0", |
15 | 30 | url = "https://github.com/Layout-Parser/layout-parser", |
16 | 31 | package_dir = {"": "src"}, |
17 | 32 | packages = find_packages("src"), |
| 33 | + description = "A unified toolkit for Deep Learning Based Document Image Analysis", |
18 | 34 | long_description=open("README.md", "r", encoding="utf-8").read(), |
19 | 35 | long_description_content_type="text/markdown", |
20 | 36 | python_requires='>=3.6', |
|
0 commit comments