is-dump 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.
is_dump-0.1/PKG-INFO ADDED
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: is_dump
3
+ Version: 0.1
is_dump-0.1/README.md ADDED
File without changes
@@ -0,0 +1 @@
1
+ from .main import check_bro
@@ -0,0 +1,9 @@
1
+ def check_bro(name):
2
+ if name == "vignesh" or name == "amal" or name == "sarath":
3
+ print("bro is dump")
4
+ elif name == "aswin":
5
+ print("bro is god")
6
+ elif name == "anandhu":
7
+ print("bro is npc")
8
+ else:
9
+ print("bro is unknown")
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: is_dump
3
+ Version: 0.1
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ is_dump/__init__.py
4
+ is_dump/main.py
5
+ is_dump.egg-info/PKG-INFO
6
+ is_dump.egg-info/SOURCES.txt
7
+ is_dump.egg-info/dependency_links.txt
8
+ is_dump.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ is_dump
is_dump-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
is_dump-0.1/setup.py ADDED
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="is_dump",
5
+ version="0.1",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ #add any dependencies here
9
+ #be good as bp
10
+ ]
11
+ )