diff --git a/README.rst b/README.rst index 91538d29..51cef52a 100644 --- a/README.rst +++ b/README.rst @@ -111,7 +111,7 @@ We are warmly welcoming all who want to contribute to the deflex library. Citing deflex ======================== -We soon will use the zenodo project to get a DOI for each version. +Use Zenodo to get the DOI for your `deflex version `_. License ============ diff --git a/deflex/__init__.py b/deflex/__init__.py index 55819f7d..07e253d8 100644 --- a/deflex/__init__.py +++ b/deflex/__init__.py @@ -1 +1 @@ -__version__='0.1.0-rc.1' +__version__ = '0.1.0-rc.1' diff --git a/setup.py b/setup.py index 18832eb4..8e59be9e 100644 --- a/setup.py +++ b/setup.py @@ -39,4 +39,13 @@ def read(fname): "dill", "matplotlib", ], + package_data={ + "deflex": [ + os.path.join("data", "static", "*.csv"), + os.path.join("data", "static", "*.txt"), + os.path.join("data", "geometries", "*.csv"), + os.path.join("data", "geometries", "*.geojson"), + "*.ini", + ] + }, )