diff --git a/.sdlcforge.json b/.sdlcforge.json new file mode 100644 index 0000000..b35f344 --- /dev/null +++ b/.sdlcforge.json @@ -0,0 +1,38 @@ +{ + "_comment": "SDLC Forge configuration file for stratplotlib", + "schema_version": "1.0", + "projects": [ + { + "type": "python", + "name": "stratplotlib", + "path": "", + "runtime": { + "name": "python", + "version": "3.13" + }, + "build_tool": { + "name": "setuptools", + "version": "3.8" + }, + "dependency": { + "command": "pip install -e ." + }, + "build": { + "command": "pip install setuptools wheel && python setup.py bdist_wheel" + }, + "artefacts": { + "source_code": [ + "stratomap/" + ], + "deliverable": [ + "dist/*.whl", + "dist/*.tar.gz" + ], + "dependency_manifests": [ + "setup.py", + "setup.cfg" + ] + } + } + ] +} diff --git a/setup.py b/setup.py index d1d4655..bdc98de 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ -from distutils.core import setup +from setuptools import setup setup( name='stratplotlib', - packages=['stratplotlib'], + packages=['stratomap'], version=0.1, description='A geospatial visualization library designed for DataFrames', author='StratoDem Analytics',