diff --git a/setup.py b/setup.py index 584041f9..4647deb9 100644 --- a/setup.py +++ b/setup.py @@ -11,12 +11,12 @@ MAINTAINER_EMAIL = 'edsonporto88@gmail.com' URL = 'https://github.com/edsonportosilva/OptiCommPy' LICENSE = 'BSD 3-Clause' -VERSION = '0.5.0' +VERSION = '0.6.0' #This is a list of files to install, and where #(relative to the 'root' dir, where setup.py is) #You could be more specific. -files = ["optic/*","optic/comm/*","optic/dsp/*", "optic/models/*", "optic/comm/fecParams/*","optic/models/ampParams/*"] +files = ["optic/*","optic/comm/*","optic/dsp/*", "optic/models/*"] setup( name=DISTNAME, @@ -30,7 +30,7 @@ #(If you have other packages (dirs) or modules (py files) then #put them into the package directory - they will be found #recursively.) - packages=['optic', 'optic.comm', 'optic.models', 'optic.dsp','optic.models.ampParams','optic.comm.fecParams'], + packages=['optic', 'optic.comm', 'optic.models', 'optic.dsp'], #py_modules = ['plot', 'core', 'comm', 'dsp', 'models'], install_requires=[ 'numpy>=1.9.2',