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

Simplified setup.py.

parent f27ce63d
No related branches found
No related tags found
No related merge requests found
Pipeline #
"""
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="bigdftparser",
version="0.1",
description="NoMaD parser implementation for BigDFT.",
description="NOMAD parser implementation for BigDFT.",
author="Lauri Himanen",
author_email="lauri.himanen@aalto.fi",
license="GPL3",
package_dir={'': 'parser/parser-big-dft'},
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.
Please register or to comment