-
Notifications
You must be signed in to change notification settings - Fork 2
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
Adam Fekete
committed
Nov 6, 2019
1 parent
7dda644
commit fe31799
Showing
2 changed files
with
17 additions
and
9 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
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 |
---|---|---|
|
@@ -16,19 +16,26 @@ | |
|
||
setup( | ||
name='mff', | ||
version='1,0', | ||
version='0.2.0', | ||
author='Claudio Zeni, Adam Fekete, Aldo Glielmo', | ||
description='This is a demo package', | ||
author_email='[email protected]', | ||
description='Gaussian process regression to extract non-parametric 2- and 3- body force fields.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/kcl-tscm/mff", | ||
packages=find_packages(), | ||
ext_modules=[tricube_cpp_module, tricube_fortran_module], | ||
install_requires=[ | ||
'numpy', | ||
'asap3', | ||
'ase', | ||
'theano >= 1.0.4', | ||
'scipy' | ||
] | ||
'numpy', | ||
'asap3', | ||
'ase', | ||
'theano >= 1.0.4', | ||
'scipy' | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Topic :: Scientific/Engineering :: Physics' | ||
], | ||
) |