Skip to content

Commit 723dd1e

Browse files
authored
Merge pull request #53 from mrayanasim09/actions/black
Format Python code with psf/black push
2 parents be78fc6 + a7e9f4c commit 723dd1e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
from setuptools import setup, find_packages
22

3+
34
def print_install_message():
45
print("***************************************")
56
print("* This package is made by MRayan Asim *")
67
print("***************************************")
78

9+
810
import atexit
11+
912
atexit.register(print_install_message)
1013

1114
setup(
12-
name='python-projects',
13-
version='0.1',
14-
description='A collection of Python projects',
15-
author='Your Name',
16-
author_email='[email protected]',
15+
name="python-projects",
16+
version="0.1",
17+
description="A collection of Python projects",
18+
author="Your Name",
19+
author_email="[email protected]",
1720
packages=find_packages(),
1821
)

0 commit comments

Comments
 (0)