Uploaded Code

This commit is contained in:
zhunhung
2019-03-13 23:05:47 +08:00
parent 72a2fbf5ef
commit 7a1a5db565
3 changed files with 70 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sentistrength-zhunhung",
version="0.0.1",
author="Zhun Hung",
author_email="yongzhunhung@gmail.com",
description="Python 3 Wrapper for SentiStrength, reads a single or multiple input with options for binary class or scale output.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zhunhung/pysentistrength",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)