Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .sdlcforge.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
]
}
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down