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 37a5477 commit ed3fa0eCopy full SHA for ed3fa0e
setup.py
@@ -1,10 +1,10 @@
1
-from setuptools import setup
+from setuptools import setup, find_packages
2
3
setup(
4
- name='python-projects',
+ name='python-projects', # This is the package name users will use for installation
5
version='0.1',
6
description='A collection of Python projects',
7
- author='MRayan Asim',
+ author='Your Name',
8
author_email='[email protected]',
9
- packages=['python_projects'],
+ packages=find_packages(),
10
)
0 commit comments