|
17 | 17 | See the License for the specific language governing permissions and
|
18 | 18 | limitations under the License.
|
19 | 19 | """
|
20 |
| - |
21 | 20 | from setuptools import setup, find_packages
|
22 | 21 |
|
23 | 22 | from unstructured.__version__ import __version__
|
24 | 23 |
|
25 | 24 | setup(
|
26 | 25 | name="unstructured",
|
27 | 26 | description="A library that prepares raw documents for downstream ML tasks.",
|
| 27 | + long_description=open("README.md", "r", encoding="utf-8").read(), |
| 28 | + keywords="NLP PDF HTML CV XML parsing preprocessing", |
| 29 | + url="https://github.com/Unstructured-IO/unstructured", |
| 30 | + python_requires=">=3.8.0", |
| 31 | + classifiers=[ |
| 32 | + "Development Status :: 4 - Beta", |
| 33 | + "Intended Audience :: Developers", |
| 34 | + "Intended Audience :: Education", |
| 35 | + "Intended Audience :: Science/Research", |
| 36 | + "License :: OSI Approved :: Apache Software License", |
| 37 | + "Operating System :: OS Independent", |
| 38 | + "Programming Language :: Python :: 3", |
| 39 | + "Programming Language :: Python :: 3.8", |
| 40 | + "Programming Language :: Python :: 3.9", |
| 41 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 42 | + ], |
28 | 43 | author="Unstructured Technologies",
|
29 | 44 |
|
30 | 45 | license="Apache-2.0",
|
|
0 commit comments