RIZER 1.0.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.
@@ -0,0 +1 @@
1
+ recursive-include rizer *
rizer-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: RIZER
3
+ Version: 1.0.0
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: RIZER
3
+ Version: 1.0.0
@@ -0,0 +1,8 @@
1
+ MANIFEST.in
2
+ pyproject.toml
3
+ setup.py
4
+ RIZER.egg-info/PKG-INFO
5
+ RIZER.egg-info/SOURCES.txt
6
+ RIZER.egg-info/dependency_links.txt
7
+ RIZER.egg-info/entry_points.txt
8
+ RIZER.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rizer = rizer.main:main
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
rizer-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
rizer-1.0.0/setup.py ADDED
@@ -0,0 +1,14 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="RIZER", # package নাম
5
+ version="1.0.0", # version
6
+ packages=find_packages(), # Python automatically সব subpackage খুঁজবে
7
+ include_package_data=True, # MANIFEST.in অনুযায়ী সব file include হবে
8
+ install_requires=[], # যদি অন্য Python dependency থাকে
9
+ entry_points={
10
+ "console_scripts": [
11
+ "rizer=rizer.main:main" # rizer লিখলেই main.py রান হবে
12
+ ]
13
+ },
14
+ )