Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit 693fe13

Browse files
CipherCipher
authored andcommitted
Package issue fixed. Versions 0.0.5b-0.0.8 are not functional.
1 parent d9420cf commit 693fe13

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed

Janex.egg-info/PKG-INFO

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Metadata-Version: 2.1
22
Name: Janex
3-
Version: 0.0.7
3+
Version: 0.0.8b0
44
Home-page: https://github.com/Cipher58
5-
Download-URL: https://github.com/Cipher58/Janex/
5+
Download-URL: https://github.com/Cipher58/Janex/archive/refs/tags/v0.0.2-beta.tar.gz
66
Author: Cipher58
77
Author-email: cipher58public@gmail.com
88
License: Lily 1.0
@@ -69,7 +69,7 @@ To compare the input with the patterns from your intents.json storage file, you
6969
```
7070
intents_file_path = "intents.json"
7171

72-
intent_class = matcher.pattern_compare(input_string, intents_file_path)
72+
intent_class, similarity = matcher.pattern_compare(input_string)
7373

7474
print(intent_class)
7575
```

Janex.egg-info/SOURCES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
LICENSE
22
README.md
3-
Setup.py
43
setup.py
54
Janex/__init__.py
65
Janex/chat.py

dist/Janex-0.0.8.tar.gz

5.56 KB
Binary file not shown.

dist/Janex-0.0.8b0.tar.gz

5.55 KB
Binary file not shown.

setup.py

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
# Here is the module name.
8+
name="Janex",
9+
10+
# version of the module
11+
version="0.0.8b0",
12+
13+
# Name of Author
14+
author="Cipher58",
15+
16+
download_url = 'https://github.com/Cipher58/Janex/archive/refs/tags/v0.0.2-beta.tar.gz',
17+
18+
# your Email address
19+
author_email="cipher58public@gmail.com",
20+
21+
# #Small Description about module
22+
# description="adding number",
23+
24+
# long_description=long_description,
25+
26+
# Specifying that we are using markdown file for description
27+
long_description=long_description,
28+
long_description_content_type="text/markdown",
29+
30+
# Any link to reach this module, ***if*** you have any webpage or github profile
31+
url="https://github.com/Cipher58",
32+
33+
packages=setuptools.find_packages(),
34+
35+
36+
#if module has dependencies i.e. if your package rely on other package at pypi.org
37+
# then you must add there, in order to download every requirement of package
38+
39+
install_requires=[
40+
"numpy",
41+
"torch",
42+
],
43+
44+
45+
license="Lily 1.0",
46+
47+
# classifiers like program is suitable for python3, just leave as it is.
48+
classifiers=[
49+
"Programming Language :: Python :: 3",
50+
"Operating System :: OS Independent",
51+
],
52+
)

0 commit comments

Comments
 (0)