Creating baseline and readme.
This commit is contained in:
commit
80e4dcf5a3
8
README.md
Normal file
8
README.md
Normal 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
3
src/.properties
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
#format : #tonel
|
||||
}
|
13
src/BaselineOfExtEnvi/BaselineOfExtEnvi.class.st
Normal file
13
src/BaselineOfExtEnvi/BaselineOfExtEnvi.class.st
Normal 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') ] ]
|
||||
]
|
1
src/BaselineOfExtEnvi/package.st
Normal file
1
src/BaselineOfExtEnvi/package.st
Normal file
@ -0,0 +1 @@
|
||||
Package { #name : #BaselineOfExtEnvi }
|
1
src/ExtEnvi/package.st
Normal file
1
src/ExtEnvi/package.st
Normal file
@ -0,0 +1 @@
|
||||
Package { #name : #ExtEnvi }
|
Loading…
Reference in New Issue
Block a user