I am new to python and setup tools. I have following setup.py in root directory which contains several modules. however I wish to only create egg file for one module. Currently it includes all modules. What am I missing here.
from setuptools import setup
setup(
name="edl_code",
version="0.1",
packages=["scripts_new"]
)