Skip to content

Commit 6b3e86c

Browse files
authored
docs: Added long description to PyPi (#58)
* docs: Added long description to PyPi * Added fields for description in PyPi
1 parent df16b58 commit 6b3e86c

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

Diff for: setup.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,29 @@
1717
See the License for the specific language governing permissions and
1818
limitations under the License.
1919
"""
20-
2120
from setuptools import setup, find_packages
2221

2322
from unstructured.__version__ import __version__
2423

2524
setup(
2625
name="unstructured",
2726
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+
],
2843
author="Unstructured Technologies",
2944
author_email="[email protected]",
3045
license="Apache-2.0",

0 commit comments

Comments
 (0)