Skip to content

Commit

Permalink
fixing missing header file
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Fekete committed Nov 7, 2019
1 parent b61d7c8 commit a30f13b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
tricube_cpp_module = Extension(
'mff.interpolation.tricube_cpp._tricube',
sources=["mff/interpolation/tricube_cpp/tricube_module.c", "mff/interpolation/tricube_cpp/_tricube.c"],
depends=["mff/interpolation/tricube_cpp/_tricube.h"],
include_dirs=[numpy.get_include(), "mff/interpolation/tricube_cpp/"]
)

Expand All @@ -12,9 +13,9 @@

setup(
name='mff',
version='0.3',
version='0.4',
author='Claudio Zeni, Adam Fekete, Aldo Glielmo',
author_email='[email protected]',
author_email='',
description='Gaussian process regression to extract non-parametric 2-, 3- and many-body force fields.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -31,8 +32,10 @@
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved',
'Topic :: Scientific/Engineering :: Physics'
],
)

0 comments on commit a30f13b

Please sign in to comment.