We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3fa0e commit be78fc6Copy full SHA for be78fc6
setup.py
@@ -1,7 +1,15 @@
1
from setuptools import setup, find_packages
2
3
+def print_install_message():
4
+ print("***************************************")
5
+ print("* This package is made by MRayan Asim *")
6
7
+
8
+import atexit
9
+atexit.register(print_install_message)
10
11
setup(
- name='python-projects', # This is the package name users will use for installation
12
+ name='python-projects',
13
version='0.1',
14
description='A collection of Python projects',
15
author='Your Name',
0 commit comments