From 3b92594f8eabf7f658d4a3c4fe7251a05a744709 Mon Sep 17 00:00:00 2001 From: Edson Porto da Silva Date: Fri, 7 Jul 2023 17:42:52 -0300 Subject: [PATCH] Update setup.py --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6793e092..584041f9 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.4.0' +VERSION = '0.5.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/*"] +files = ["optic/*","optic/comm/*","optic/dsp/*", "optic/models/*", "optic/comm/fecParams/*","optic/models/ampParams/*"] setup( name=DISTNAME, @@ -30,7 +30,8 @@ #(If you have other packages (dirs) or modules (py files) then #put them into the package directory - they will be found #recursively.) - packages=['optic'], + packages=['optic', 'optic.comm', 'optic.models', 'optic.dsp','optic.models.ampParams','optic.comm.fecParams'], + #py_modules = ['plot', 'core', 'comm', 'dsp', 'models'], install_requires=[ 'numpy>=1.9.2', 'scipy>=0.15.0',