Skip to content

Commit c2842f8

Browse files
committed
exp2py: bump package version number and replace SCL references in README and setup.cfg
1 parent 80b4588 commit c2842f8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/exp2python/python/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# SCL - A Python3 STEP Class Library
1+
# stepcode - A Python3 STEP Library
22

3-
SCL is a Python3-based library for parsing and manipulating ISO 10303 Part 21 ("STEP") files.
3+
STEPCODE Python is a Python3-based library for parsing and manipulating ISO 10303 Part 21 ("STEP") files.
44

55
# Use
66

7-
To parse a ISO 10303 Part 21 file, use the `Parser` class of `SCL.Part21`. On a successful parse, the result will be a Part 21 parse tree and associated STEP instances.
7+
To parse a ISO 10303 Part 21 file, use the `Parser` class of `stepcode.Part21`. On a successful parse, the result will be a Part 21 parse tree and associated STEP instances.
88

9-
See [test_parser](tests/test_parser.py) for use of the `SCL.Part21` parser with a sample STEP file.
9+
See [test_parser](tests/test_parser.py) for use of the `stepcode.Part21` parser with a sample STEP file.
1010

1111

1212
# Building
1313

14-
The SCL Python package can be built directly using [PyPA's build module](https://github.com/pypa/build). Run `python3 -m build` from this directory.
14+
The stepcode Python package can be built directly using [PyPA's build module](https://github.com/pypa/build). Run `python3 -m build` from this directory.
1515

1616
# Testing
1717

18-
SCL comes with a small test suite (additions welcome!) From this directory, `python3 -m unittest discover`.
18+
STEPCODE Python comes with a small test suite (additions welcome!) From this directory, `python3 -m unittest discover`.
1919

2020
# License
2121

src/exp2python/python/setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[metadata]
2-
name = stepcode-scl
3-
version = 0.6.1
2+
name = stepcode
3+
version = 0.7.0
44
author = Thomas Paviot <tpaviot@gmail.com>, Christopher HORLER (cshorler@googlemail.com), Devon Sparks (devonsparks.com)
5-
description = stepcode-scl is a Python3-based library for parsing and manipulating ISO 10303 Part 21 ("STEP") files.
5+
description = stepcode is a Python3-based library for parsing and manipulating ISO 10303 Part 21 ("STEP") files.
66
long_description = file: README.md
77
long_description_content_type = text/markdown
88

@@ -15,7 +15,7 @@ classifiers =
1515
[options]
1616
package_dir =
1717
=.
18-
packages = SCL
18+
packages = stepcode
1919
python_requires = >=3.6
2020
install_requires =
2121
ply

0 commit comments

Comments
 (0)