emergentintegrations 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.
- emergentintegrations-0.0.1/PKG-INFO +23 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/PKG-INFO +23 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/SOURCES.txt +10 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/dependency_links.txt +1 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/entry_points.txt +2 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/not-zip-safe +1 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/requires.txt +4 -0
- emergentintegrations-0.0.1/emergentintegrations.egg-info/top_level.txt +1 -0
- emergentintegrations-0.0.1/opengrep/__init__.py +0 -0
- emergentintegrations-0.0.1/setup.cfg +7 -0
- emergentintegrations-0.0.1/setup.py +33 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: emergentintegrations
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Home-page:
|
|
5
|
+
Author: Zerooo
|
|
6
|
+
Author-email:
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: emergentintegrations
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: twine>=4.0.2; extra == "dev"
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: keywords
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: provides-extra
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
|
|
23
|
+
emergentintegrations
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: emergentintegrations
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Home-page:
|
|
5
|
+
Author: Zerooo
|
|
6
|
+
Author-email:
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: emergentintegrations
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: twine>=4.0.2; extra == "dev"
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: keywords
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: provides-extra
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
|
|
23
|
+
emergentintegrations
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
setup.cfg
|
|
2
|
+
setup.py
|
|
3
|
+
emergentintegrations.egg-info/PKG-INFO
|
|
4
|
+
emergentintegrations.egg-info/SOURCES.txt
|
|
5
|
+
emergentintegrations.egg-info/dependency_links.txt
|
|
6
|
+
emergentintegrations.egg-info/entry_points.txt
|
|
7
|
+
emergentintegrations.egg-info/not-zip-safe
|
|
8
|
+
emergentintegrations.egg-info/requires.txt
|
|
9
|
+
emergentintegrations.egg-info/top_level.txt
|
|
10
|
+
opengrep/__init__.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
opengrep
|
|
File without changes
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
VERSION = "0.0.1"
|
|
2
|
+
|
|
3
|
+
from setuptools import setup, find_packages
|
|
4
|
+
|
|
5
|
+
setup(
|
|
6
|
+
name='emergentintegrations',
|
|
7
|
+
version=VERSION,
|
|
8
|
+
description='',
|
|
9
|
+
long_description="emergentintegrations",
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url='',
|
|
12
|
+
author='Zerooo',
|
|
13
|
+
author_email='',
|
|
14
|
+
include_package_data=True,
|
|
15
|
+
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'tests.*', 'release']),
|
|
16
|
+
zip_safe=False,
|
|
17
|
+
entry_points={
|
|
18
|
+
'console_scripts': [
|
|
19
|
+
'emergentintegrations=emergentintegrations.main:main',
|
|
20
|
+
],
|
|
21
|
+
},
|
|
22
|
+
license='MIT',
|
|
23
|
+
install_requires=[
|
|
24
|
+
'requests',
|
|
25
|
+
],
|
|
26
|
+
extras_require={
|
|
27
|
+
"dev": ["twine>=4.0.2"],
|
|
28
|
+
},
|
|
29
|
+
classifiers=[
|
|
30
|
+
'Intended Audience :: Developers',
|
|
31
|
+
],
|
|
32
|
+
keywords='emergentintegrations',
|
|
33
|
+
)
|