Skip to content

Commit 14179f0

Browse files
committed
README.md: Initial content; bumped version to 0.0.2
1 parent 1188dd6 commit 14179f0

2 files changed

Lines changed: 31 additions & 3 deletions

File tree

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
eC Runtime Library
1+
# eC Runtime Library
2+
3+
https://ec-lang.org
4+
5+
A stand-alone core runtime library for the [eC programming language](https://ec-lang.org), part of the [Ecere SDK](https://ecere.org).
6+
7+
[![Ollie-the-sea-otter](http://ec-lang.org/images/eC-256.png)](http://ec-lang.org/images/eC-256.png)
8+
9+
Copyright (c) 1996-2025, Ecere Corporation
10+
11+
Licensed under the [BSD 3-Clause License](https://opensource.org/license/bsd-3-clause)
12+
13+
Source: https://github.com/ecere/eC
14+
15+
Python packaging: https://github.com/ecere/pyecrt
16+
17+
## DOCUMENTATION
18+
19+
API documentation: See https://ecere.org/docs/ecere/ecere.html and https://ecere.org/docs/ecereCOM/ecere.html .
20+
21+
This core eC runtime library covers the `sys` and `com` namespaces of the Ecere runtime library.
22+
23+
[![Tao](http://ecere.com/images/tao.png)](http://ecere.org/tao.pdf)
24+
The [Ecere Tao of Programming](http://ecere.org/tao.pdf) is a Programmer's Guide (still work in progress)
25+
teaching the foundations of the eC programming language, including its C foundation.
26+
27+
See also the [samples](http://github.com/ecere/ecere-sdk/tree/master/samples) provided with the SDK, and some featured projects as prebuilt binaries at http://ecere.org/software.
28+
29+
Reach out on [IRC](https://web.libera.chat/?theme=cli#ecere) - **#ecere** on irc.libera.chat<br>

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import distutils.ccompiler
1313
from distutils.command.build_ext import build_ext
1414

15-
pkg_version = '0.0.1'
15+
pkg_version = '0.0.2'
1616

1717
env = os.environ.copy()
1818

@@ -183,7 +183,7 @@ def run(self):
183183

184184
setup(
185185
name='ecrt',
186-
version='0.0.1',
186+
version=pkg_version,
187187
cffi_modules=cffi_modules,
188188
setup_requires=['cffi >= 1.0.0'],
189189
install_requires=['cffi >= 1.0.0'],

0 commit comments

Comments
 (0)