Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kj7rrv committed Dec 6, 2021
1 parent cc8faa8 commit a13a4a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gptc",
version="1.0.0",
description="General-purpose text classifier",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)

0 comments on commit a13a4a9

Please sign in to comment.