I want to install my project as a folder instead of .egg file. So I have used zip_safe= False inside setup function in setup.py file
But when I am running this my project is getting installed as .egg file instead of a directory inside /Library/Python/2.7/site-packages. Below is my setup.py file
from setuptools import setup, find_packages
setup(name = "my-project",
version = "0.1",
description = "Python version of my-project",
author = "Priyal Jain",
author_email = "[email protected]",
license="Apache 2.0",
keywords="Python my project",
package_dir={'': 'lib'},
#packages=find_packages('lib'),
packages= ['abc','pqr'],
package_data={
'abc.sample': ['*.yml']
},
zip_safe= False,
scripts = ["abc"],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)
Am I missing anything?? Is there some other way to install python project as a directory instead of .egg files