Skip to content

Commit

Permalink
removed windows testing references
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcarreras committed Jan 25, 2022
1 parent 560527b commit df3671e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
3 changes: 0 additions & 3 deletions python/setup.cfg

This file was deleted.

13 changes: 1 addition & 12 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_version_number():
# extra_compile_args=['-ffixed-form', '-ffixed-line-length-none'],
# include_dirs=include_dirs_numpy,
include_dirs=[i_dir],
# libraries=['lapack', 'blas'],
libraries=['lapack', 'blas'],
sources=['WFNSYMLIB.pyf',
s_dir + 'VRoutines.F',
s_dir + 'aos_product.F',
Expand Down Expand Up @@ -76,16 +76,5 @@ def get_version_number():
author_email='abelcarreras83@gmail.com',
install_requires=['numpy', 'scipy'],
packages=['wfnsympy'],
package_data={"": ["*.dll"],},
include_package_data=True,
ext_modules=[wfnsymlib, qsymlib])


# If windows
if sys.platform.startswith('win'):
from shutil import copyfile
dir = os.path.dirname(__file__)
files = os.listdir(dir + '/wfnsympy/.libs')
for file in files:
filename = os.path.join(dir, 'wfnsympy','.libs', file)
copyfile(filename, os.path.join(dir, 'wfnsympy', file))

0 comments on commit df3671e

Please sign in to comment.