rasa-pro 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rasa-pro might be problematic. Click here for more details.

@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.1
2
+ Name: rasa-pro
3
+ Version: 0.0.1
4
+ Summary: Rasa Pro package
5
+ Home-page: https://rasa.com
6
+ Author: Rasa Technologies GmbH
7
+ Author-email: hi@rasa.com
8
+ Maintainer: Tom Bocklisch
9
+ Maintainer-email: tom@rasa.com
10
+ License: Apache 2.0
11
+ Project-URL: Bug Reports, https://github.com/rasahq/rasa/issues
12
+ Project-URL: Source, https://github.com/rasahq/rasa
13
+ Description: # Rasa Pro placeholder
14
+ This is an empty placeholder package for pypi.org.
15
+
16
+ ## Create a release
17
+ prerequisite:
18
+ * make sure to install `twine`
19
+
20
+ commands to create and upload a release:
21
+ ```python
22
+ OVERRIDE=true python setup.py sdist
23
+ twine upload dist/*
24
+ ```
25
+
26
+
27
+ Keywords: nlp machine-learning machine-learning-library bot bots botkit rasa conversational-agents conversational-ai chatbotchatbot-framework bot-framework
28
+ Platform: UNKNOWN
29
+ Classifier: Development Status :: 4 - Beta
30
+ Classifier: Intended Audience :: Developers
31
+ Classifier: Programming Language :: Python
32
+ Classifier: Programming Language :: Python :: 3.6
33
+ Classifier: Programming Language :: Python :: 3.7
34
+ Classifier: Programming Language :: Python :: 3.8
35
+ Classifier: Programming Language :: Python :: 3.9
36
+ Classifier: Programming Language :: Python :: 3.10
37
+ Classifier: Topic :: Software Development :: Libraries
38
+ Description-Content-Type: text/markdown
@@ -0,0 +1,13 @@
1
+ # Rasa Pro placeholder
2
+ This is an empty placeholder package for pypi.org.
3
+
4
+ ## Create a release
5
+ prerequisite:
6
+ * make sure to install `twine`
7
+
8
+ commands to create and upload a release:
9
+ ```python
10
+ OVERRIDE=true python setup.py sdist
11
+ twine upload dist/*
12
+ ```
13
+
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.1
2
+ Name: rasa-pro
3
+ Version: 0.0.1
4
+ Summary: Rasa Pro package
5
+ Home-page: https://rasa.com
6
+ Author: Rasa Technologies GmbH
7
+ Author-email: hi@rasa.com
8
+ Maintainer: Tom Bocklisch
9
+ Maintainer-email: tom@rasa.com
10
+ License: Apache 2.0
11
+ Project-URL: Bug Reports, https://github.com/rasahq/rasa/issues
12
+ Project-URL: Source, https://github.com/rasahq/rasa
13
+ Description: # Rasa Pro placeholder
14
+ This is an empty placeholder package for pypi.org.
15
+
16
+ ## Create a release
17
+ prerequisite:
18
+ * make sure to install `twine`
19
+
20
+ commands to create and upload a release:
21
+ ```python
22
+ OVERRIDE=true python setup.py sdist
23
+ twine upload dist/*
24
+ ```
25
+
26
+
27
+ Keywords: nlp machine-learning machine-learning-library bot bots botkit rasa conversational-agents conversational-ai chatbotchatbot-framework bot-framework
28
+ Platform: UNKNOWN
29
+ Classifier: Development Status :: 4 - Beta
30
+ Classifier: Intended Audience :: Developers
31
+ Classifier: Programming Language :: Python
32
+ Classifier: Programming Language :: Python :: 3.6
33
+ Classifier: Programming Language :: Python :: 3.7
34
+ Classifier: Programming Language :: Python :: 3.8
35
+ Classifier: Programming Language :: Python :: 3.9
36
+ Classifier: Programming Language :: Python :: 3.10
37
+ Classifier: Topic :: Software Development :: Libraries
38
+ Description-Content-Type: text/markdown
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ rasa_pro.egg-info/PKG-INFO
4
+ rasa_pro.egg-info/SOURCES.txt
5
+ rasa_pro.egg-info/dependency_links.txt
6
+ rasa_pro.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,42 @@
1
+ from setuptools import setup
2
+ import os
3
+
4
+ # Get the long description from the README file
5
+ with open("README.md", "r") as fh:
6
+ long_description = fh.read()
7
+
8
+ setup(
9
+ name="rasa-pro",
10
+ classifiers=[
11
+ "Development Status :: 4 - Beta",
12
+ "Intended Audience :: Developers",
13
+ # supported python versions
14
+ "Programming Language :: Python",
15
+ "Programming Language :: Python :: 3.6",
16
+ "Programming Language :: Python :: 3.7",
17
+ "Programming Language :: Python :: 3.8",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Topic :: Software Development :: Libraries",
21
+ ],
22
+ version="0.0.1",
23
+ description="Rasa Pro package",
24
+ long_description=long_description,
25
+ long_description_content_type="text/markdown",
26
+ author="Rasa Technologies GmbH",
27
+ author_email="hi@rasa.com",
28
+ maintainer="Tom Bocklisch",
29
+ maintainer_email="tom@rasa.com",
30
+ license="Apache 2.0",
31
+ keywords="nlp machine-learning machine-learning-library bot bots "
32
+ "botkit rasa conversational-agents conversational-ai chatbot"
33
+ "chatbot-framework bot-framework",
34
+ url="https://rasa.com",
35
+ project_urls={
36
+ "Bug Reports": "https://github.com/rasahq/rasa/issues",
37
+ "Source": "https://github.com/rasahq/rasa",
38
+ },
39
+ )
40
+
41
+ if not os.getenv("OVERRIDE"):
42
+ raise RuntimeError('You are installing rasa-pro from pypi.org, which will not work. Please make sure you are installing from the Rasa python package registry. More information can be found at https://rasa.com/docs/rasa-pro/installation/python/installation')