flake8-tergeo 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.
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.2
2
+ Name: flake8-tergeo
3
+ Version: 0.0.1
4
+ Summary: PoC
5
+ Home-page: https://github.com/sjnscythe
6
+ Author: scythe abhi
7
+ Author-email: scytheabhi97@gmail.com
8
+ License: MIT
9
+ Keywords: PoC
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.6
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Requires-Python: >=3.6
18
+ Description-Content-Type: text/markdown
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license
27
+ Dynamic: requires-python
28
+ Dynamic: summary
29
+
30
+ A poc by sjnscythe
@@ -0,0 +1 @@
1
+ A poc by sjnscythe
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.2
2
+ Name: flake8-tergeo
3
+ Version: 0.0.1
4
+ Summary: PoC
5
+ Home-page: https://github.com/sjnscythe
6
+ Author: scythe abhi
7
+ Author-email: scytheabhi97@gmail.com
8
+ License: MIT
9
+ Keywords: PoC
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.6
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Requires-Python: >=3.6
18
+ Description-Content-Type: text/markdown
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license
27
+ Dynamic: requires-python
28
+ Dynamic: summary
29
+
30
+ A poc by sjnscythe
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ flake8_tergeo.egg-info/PKG-INFO
4
+ flake8_tergeo.egg-info/SOURCES.txt
5
+ flake8_tergeo.egg-info/dependency_links.txt
6
+ flake8_tergeo.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,26 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='flake8-tergeo',
5
+ version='0.0.1',
6
+ description='PoC',
7
+ long_description=open('README.md').read(), # Remove CHANGELOG.txt
8
+ long_description_content_type='text/markdown', # Specify Markdown format
9
+ url='https://github.com/sjnscythe',
10
+ author='scythe abhi',
11
+ author_email='scytheabhi97@gmail.com',
12
+ license='MIT',
13
+ keywords='PoC',
14
+ packages=find_packages(),
15
+ install_requires=[],
16
+ python_requires='>=3.6',
17
+ classifiers=[
18
+ 'Development Status :: 3 - Alpha',
19
+ 'Intended Audience :: Developers',
20
+ 'License :: OSI Approved :: MIT License',
21
+ 'Programming Language :: Python :: 3',
22
+ 'Programming Language :: Python :: 3.6',
23
+ 'Programming Language :: Python :: 3.7',
24
+ 'Programming Language :: Python :: 3.8',
25
+ ],
26
+ )