cogflow 0.1.0__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.
cogflow-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: cogflow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: cog modules
|
|
5
|
+
Author: Sai_kireeti
|
|
6
|
+
Author-email: sai.kireeti@hiro-microdatacenters.nl
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: cogflow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: cog modules
|
|
5
|
+
Author: Sai_kireeti
|
|
6
|
+
Author-email: sai.kireeti@hiro-microdatacenters.nl
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
cogflow-0.1.0/setup.cfg
ADDED
cogflow-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
setup(
|
|
3
|
+
name='cogflow',
|
|
4
|
+
version='0.1.0',
|
|
5
|
+
author='Sai_kireeti',
|
|
6
|
+
author_email='sai.kireeti@hiro-microdatacenters.nl',
|
|
7
|
+
description='cog modules',
|
|
8
|
+
packages=find_packages(),
|
|
9
|
+
classifiers=[
|
|
10
|
+
'Programming Language :: Python :: 3',
|
|
11
|
+
'License :: OSI Approved :: MIT License',
|
|
12
|
+
'Operating System :: OS Independent',
|
|
13
|
+
],
|
|
14
|
+
python_requires='>=3.6',
|
|
15
|
+
)
|
|
16
|
+
|