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.
2 parents be78fc6 + a7e9f4c commit 723dd1eCopy full SHA for 723dd1e
setup.py
@@ -1,18 +1,21 @@
1
from setuptools import setup, find_packages
2
3
+
4
def print_install_message():
5
print("***************************************")
6
print("* This package is made by MRayan Asim *")
7
8
9
10
import atexit
11
12
atexit.register(print_install_message)
13
14
setup(
- name='python-projects',
- version='0.1',
- description='A collection of Python projects',
15
- author='Your Name',
16
- author_email='[email protected]',
+ name="python-projects",
+ version="0.1",
17
+ description="A collection of Python projects",
18
+ author="Your Name",
19
+ author_email="[email protected]",
20
packages=find_packages(),
21
)
0 commit comments