Skip to content

Commit ed3fa0e

Browse files
authored
Update setup.py
Signed-off-by: MRayan Asim <[email protected]>
1 parent 37a5477 commit ed3fa0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
4-
name='python-projects',
4+
name='python-projects', # This is the package name users will use for installation
55
version='0.1',
66
description='A collection of Python projects',
7-
author='MRayan Asim',
7+
author='Your Name',
88
author_email='[email protected]',
9-
packages=['python_projects'],
9+
packages=find_packages(),
1010
)

0 commit comments

Comments
 (0)