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

setup.py installs subpackages and needed data files.

parent ffc63926
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
This is a setup script for those that are familiar with setuptooll. You can
also just setup the paths and necessary dependencies in any other way you wish.
"""
from setuptools import setup
from setuptools import setup, find_packages
#===============================================================================
......@@ -13,7 +13,11 @@ def main():
version="0.1",
description="Tools for NOMAD parser development",
package_dir={'': 'common/python'},
packages=["nomadcore"],
packages=["nomadcore", "nomadcore.unit_conversion", "nomadscripts"],
include_package_data=True,
package_data={
'nomadcore.unit_conversion': ['*.txt'],
},
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