-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolves #10 : Making testing-framework module #11
base: public
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ temp/ | |
example_models/Si/models/GAP/* | ||
!example_models/Si/models/GAP/README | ||
.DS_Store | ||
*.eggs | ||
*.egg-info |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from setuptools import setup, find_packages | ||
|
||
PACKAGENAME = "testingframework" | ||
DESCRIPTION = "Module for testing various interatomic potentials" | ||
AUTHOR = "Libatoms" | ||
AUTHOR_EMAIL = "" | ||
|
||
version = {} | ||
with open("version.py") as fp: | ||
exec(fp.read(), version) | ||
|
||
setup( | ||
name=PACKAGENAME, | ||
packages=find_packages(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there is no |
||
version=version["__version__"], | ||
description=DESCRIPTION, | ||
long_description=open("README.md").read(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shall we read this in above just like the other parts? just being a little petty here, but |
||
install_requires=["scipy", "numpy", "matplotlib", "pandas>=0.21.0", "scipy",], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
there are optional dependencies, that I wouldn't want to install unless needed, like |
||
setup_requires=["pytest-runner",], | ||
tests_require=["pytest",], | ||
author=AUTHOR, | ||
author_email=AUTHOR_EMAIL, | ||
package_data={"": ["data/*", "calib/data/*"],}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. these directories don't seem to exist |
||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Module" or "Package" ?