Skip to content
Snippets Groups Projects
Commit e83d29d7 authored by pupu's avatar pupu
Browse files

setup.py installs subpackages and needed data files.

parent 6cc7ef53
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
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
from setuptools import setup, find_packages
#===============================================================================
......@@ -13,13 +13,13 @@ def main():
version="0.1",
include_package_data=True,
package_data={
'': ['*.pickle'],
'cp2kparser.versions.cp2k262': ['input_data/*.json', 'input_data/*.pickle'],
},
description="NoMaD parser implementation for CP2K",
author="Lauri Himanen",
author_email="lauri.himanen@gmail.com",
license="GPL3",
packages=["cp2kparser"],
packages=find_packages(),
install_requires=[
'pint',
'numpy',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment