sovai 0.1.0__tar.gz → 0.1.2__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.
- sovai-0.1.2/PKG-INFO +6 -0
- sovai-0.1.2/README.md +1 -0
- sovai-0.1.2/setup.cfg +4 -0
- sovai-0.1.2/setup.py +19 -0
- sovai-0.1.0/README.md → sovai-0.1.2/sovai/__init__.py +0 -0
- sovai-0.1.2/sovai.egg-info/PKG-INFO +6 -0
- sovai-0.1.2/sovai.egg-info/SOURCES.txt +7 -0
- sovai-0.1.2/sovai.egg-info/dependency_links.txt +1 -0
- sovai-0.1.2/sovai.egg-info/top_level.txt +1 -0
- sovai-0.1.0/PKG-INFO +0 -16
- sovai-0.1.0/pyproject.toml +0 -15
- sovai-0.1.0/setup.py +0 -34
- sovai-0.1.0/src/sovai/__init__.py +0 -2
sovai-0.1.2/PKG-INFO
ADDED
sovai-0.1.2/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sovai-subscribe
|
sovai-0.1.2/setup.cfg
ADDED
sovai-0.1.2/setup.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
from setuptools.command.install import install
|
|
3
|
+
|
|
4
|
+
class CustomInstallCommand(install):
|
|
5
|
+
def run(self):
|
|
6
|
+
install.run(self)
|
|
7
|
+
print("Please subscribe before installing this package at https://sov.ai/home")
|
|
8
|
+
|
|
9
|
+
setup(
|
|
10
|
+
name='sovai',
|
|
11
|
+
version='0.1.2',
|
|
12
|
+
packages=['sovai'],
|
|
13
|
+
description='A brief description of your package',
|
|
14
|
+
author='sov.ai',
|
|
15
|
+
url='https://sov.ai/home',
|
|
16
|
+
cmdclass={
|
|
17
|
+
'install': CustomInstallCommand,
|
|
18
|
+
},
|
|
19
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sovai
|
sovai-0.1.0/PKG-INFO
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: sovai
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary:
|
|
5
|
-
Author: Your Name
|
|
6
|
-
Author-email: you@example.com
|
|
7
|
-
Requires-Python: >=3.7,<4.0
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
15
|
-
|
|
16
|
-
|
sovai-0.1.0/pyproject.toml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "sovai"
|
|
3
|
-
version = "0.1.0"
|
|
4
|
-
description = ""
|
|
5
|
-
authors = ["Your Name <you@example.com>"]
|
|
6
|
-
readme = "README.md"
|
|
7
|
-
|
|
8
|
-
[tool.poetry.dependencies]
|
|
9
|
-
python = "^3.7"
|
|
10
|
-
click = "^8.1.3"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
[build-system]
|
|
14
|
-
requires = ["poetry-core"]
|
|
15
|
-
build-backend = "poetry.core.masonry.api"
|
sovai-0.1.0/setup.py
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
from setuptools import setup
|
|
3
|
-
|
|
4
|
-
package_dir = \
|
|
5
|
-
{'': 'src'}
|
|
6
|
-
|
|
7
|
-
packages = \
|
|
8
|
-
['sovai']
|
|
9
|
-
|
|
10
|
-
package_data = \
|
|
11
|
-
{'': ['*']}
|
|
12
|
-
|
|
13
|
-
install_requires = \
|
|
14
|
-
['click>=8.1.3,<9.0.0']
|
|
15
|
-
|
|
16
|
-
setup_kwargs = {
|
|
17
|
-
'name': 'sovai',
|
|
18
|
-
'version': '0.1.0',
|
|
19
|
-
'description': '',
|
|
20
|
-
'long_description': '',
|
|
21
|
-
'author': 'Your Name',
|
|
22
|
-
'author_email': 'you@example.com',
|
|
23
|
-
'maintainer': 'None',
|
|
24
|
-
'maintainer_email': 'None',
|
|
25
|
-
'url': 'None',
|
|
26
|
-
'package_dir': package_dir,
|
|
27
|
-
'packages': packages,
|
|
28
|
-
'package_data': package_data,
|
|
29
|
-
'install_requires': install_requires,
|
|
30
|
-
'python_requires': '>=3.7,<4.0',
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
setup(**setup_kwargs)
|