Creating baseline and readme.

This commit is contained in:
ruidajo 2024-09-09 17:49:56 -05:00
commit 80e4dcf5a3
6 changed files with 29 additions and 0 deletions

3
.project Normal file
View File

@ -0,0 +1,3 @@
{
'srcDirectory' : 'src'
}

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# ExtEnvi
Wrapper to help create and manage external environments.
ExtEnvi use https://github.com/feenkcom/gtoolkit-utility .
The first target of this project is to create and manage python virtual environments.
## Installation ```st Metacello new repository: ''; baseline: 'ExtEnvi'; load ```

3
src/.properties Normal file
View File

@ -0,0 +1,3 @@
{
#format : #tonel
}

View File

@ -0,0 +1,13 @@
Class {
#name : #BaselineOfExtEnvi,
#superclass : #BaselineOf,
#category : #BaselineOfExtEnvi
}
{ #category : #baseline }
BaselineOfExtEnvi >> baseline: spec [
<baseline>
^ spec
for: #common
do: [ spec package: 'ExtEnvi' with: [ spec requires: #('GToolkit-Utility-System') ] ]
]

View File

@ -0,0 +1 @@
Package { #name : #BaselineOfExtEnvi }

1
src/ExtEnvi/package.st Normal file
View File

@ -0,0 +1 @@
Package { #name : #ExtEnvi }