1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

Bump adapt parser

This commit is contained in:
j1nx
2021-07-27 16:04:05 +02:00
parent c1f0400560
commit b2bd12eca2
4 changed files with 12 additions and 32 deletions

View File

@ -1,6 +1,6 @@
From 509d23d8abadba2561aec14998607fd9df45a512 Mon Sep 17 00:00:00 2001
From d49aa5b51128d0bf38fb902a57d1965e8983af5f Mon Sep 17 00:00:00 2001
From: j1nx <p.steenbergen@j1nx.nl>
Date: Fri, 18 Jun 2021 21:13:52 +0200
Date: Tue, 27 Jul 2021 15:01:43 +0200
Subject: [PATCH 1/1] Simplify setup
---
@ -8,10 +8,10 @@ Subject: [PATCH 1/1] Simplify setup
1 file changed, 15 deletions(-)
diff --git a/setup.py b/setup.py
index 36853d0..a9ae9b4 100644
index 1de4f3a..de629bd 100644
--- a/setup.py
+++ b/setup.py
@@ -18,26 +18,12 @@ __author__ = 'seanfitz'
@@ -18,25 +18,12 @@ __author__ = 'seanfitz'
import os
from setuptools import setup
@ -29,19 +29,19 @@ index 36853d0..a9ae9b4 100644
-
setup(
name="adapt-parser",
version="0.4.1",
version="0.5.1",
author="Sean Fitzgerald",
author_email="sean@fitzgeralds.me",
description=("A text-to-intent parsing framework."),
- long_description=long_description,
- long_description_content_type="text/markdown",
long_description_content_type="text/markdown",
license=("Apache License 2.0"),
keywords="natural language processing",
url="https://github.com/MycroftAI/adapt",
@@ -55,5 +41,4 @@ setup(
@@ -54,6 +41,4 @@ setup(
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
-
- install_requires=required('requirements.txt')
)
--