Skip to content

Commit

Permalink
Merge pull request #119 from MycroftAI/version/0.3.7
Browse files Browse the repository at this point in the history
bump version and add info for PyPI listing
  • Loading branch information
forslund authored Oct 22, 2020
2 parents a8c8acf + e959fa1 commit 1ae8300
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,35 @@

from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name = "adapt-parser",
version = "0.3.6",
author = "Sean Fitzgerald",
author_email = "[email protected]",
description = ("A text-to-intent parsing framework."),
license = ("Apache License 2.0"),
keywords = "natural language processing",
url = "https://github.com/MycroftAI/adapt",
packages = ["adapt", "adapt.tools", "adapt.tools.text"],
name="adapt-parser",
version="0.3.7",
author="Sean Fitzgerald",
author_email="[email protected]",
description=("A text-to-intent parsing framework."),
long_description=long_description,
long_description_content_type="text/markdown",
license=("Apache License 2.0"),
keywords="natural language processing",
url="https://github.com/MycroftAI/adapt",
packages=["adapt", "adapt.tools", "adapt.tools.text"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',

'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],

install_requires = [
install_requires=[
"pyee==8.1.0",
"six>=1.10.0"
]
Expand Down

0 comments on commit 1ae8300

Please sign in to comment.