From 15322a63f48551353ac673316e2475f206d4088d Mon Sep 17 00:00:00 2001 From: Brice Videau Date: Wed, 23 Sep 2020 11:29:33 -0500 Subject: [PATCH] Added minimal setup.py. --- bindings/python/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bindings/python/setup.py diff --git a/bindings/python/setup.py b/bindings/python/setup.py new file mode 100644 index 0000000..55978ab --- /dev/null +++ b/bindings/python/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup, find_packages +from pkg_resources import require +require("parglare>=0.12.0") +setup( + name = "cconfigspace", + version = "0.0.1", + author = "Brice Videau", + author_email = "bvideau@anl.gov", + url = "https://xgitlab.cels.anl.gov/videau/cconfigspace", + packages = ["cconfigspace"], + package_dir={'cconfigspace': 'cconfigspace'}, + license='BSD-3-Clause' + ) -- 2.26.2