Skip to content
Snippets Groups Projects
Commit 00a1d60f authored by Lauri Himanen's avatar Lauri Himanen
Browse files

Simplified setup.py.

parent 2f54b247
No related branches found
No related tags found
No related merge requests found
"""
This is a setup script for installing the parser locally on python path with
all the required dependencies. Used mainly for local testing.
"""
from setuptools import setup, find_packages
#===============================================================================
def main():
# Start package setup
setup(
name="cpmdparser",
version="0.1",
description="NoMaD parser implementation for CPMD.",
description="NOMAD parser implementation for CPMD.",
author="Lauri Himanen",
author_email="lauri.himanen@aalto.fi",
license="GPL3",
package_dir={'': 'parser/parser-cpmd'},
packages=find_packages(),
install_requires=[
'pint',
'numpy',
'nomadcore',
],
)
# Run main function by default
if __name__ == "__main__":
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment