-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b92594
commit 6b78737
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,12 @@ | |
MAINTAINER_EMAIL = '[email protected]' | ||
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', | ||
|