diff --git a/bindings/python/setup.py b/bindings/python/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..55978abf26365f40635558f35db3f4d86389390c --- /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' + )