Skip to content

Commit 0b34af6

Browse files
committed
Update module name to cyseq
Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent 7dc829e commit 0b34af6

7 files changed

Lines changed: 195 additions & 195 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fastseq
2-
=======
1+
cyseq
2+
=====
33

44
This library is a Cython version of scancode-toolkit's ``licensedcode.seq``.

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[metadata]
2-
name = fastseq
2+
name = cyseq
33
license = Apache-2.0
44

55
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
66
description = "A Cython version of ScanCode-toolkit's licensedcode.seq"
77
long_description = file:README.rst
88
long_description_content_type = text/x-rst
9-
url = https://github.com/aboutcode-org/fastseq
9+
url = https://github.com/aboutcode-org/cyseq
1010

1111
author = nexB. Inc. and others
1212
author_email = info@aboutcode.org

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
extensions = [
8-
setuptools.Extension("fastseq._seq", ["src/fastseq/_seq.pyx"], language="c++"),
8+
setuptools.Extension("cyseq._seq", ["src/cyseq/_seq.pyx"], language="c++"),
99
]
1010

1111
if __name__ == "__main__":
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
22
# Copyright (c) nexB Inc. and others. All rights reserved.
3-
# fastseq is a trademark of nexB Inc.
3+
# cyseq is a trademark of nexB Inc.
44
# SPDX-License-Identifier: Apache-2.0
55
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6-
# See https://github.com/aboutcode-org/fastseq for support or download.
6+
# See https://github.com/aboutcode-org/cyseq for support or download.
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99

Lines changed: 181 additions & 181 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
22
# Copyright (c) nexB Inc. and others. All rights reserved.
3-
# fastseq is a trademark of nexB Inc.
3+
# cyseq is a trademark of nexB Inc.
44
# SPDX-License-Identifier: Apache-2.0
55
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6-
# See https://github.com/aboutcode-org/fastseq for support or download.
6+
# See https://github.com/aboutcode-org/cyseq for support or download.
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99
from collections import namedtuple as _namedtuple
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
22
# Copyright (c) nexB Inc. and others. All rights reserved.
3-
# fastseq is a trademark of nexB Inc.
3+
# cyseq is a trademark of nexB Inc.
44
# SPDX-License-Identifier: Apache-2.0
55
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6-
# See https://github.com/aboutcode-org/fastseq for support or download.
6+
# See https://github.com/aboutcode-org/cyseq for support or download.
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99

1010
from unittest.case import TestCase
1111

12-
import fastseq
12+
import cyseq
1313

1414
"""
1515
This is testing the sequence matching internals using sequences of integers. The
@@ -719,7 +719,7 @@ def test_find_longest_match_seq(self):
719719
b_start = 0
720720
b_end = 53
721721

722-
tests = fastseq.find_longest_match(
722+
tests = cyseq.find_longest_match(
723723
a=a,
724724
b=b,
725725
alo=a_start,
@@ -730,4 +730,4 @@ def test_find_longest_match_seq(self):
730730
len_good=len_good,
731731
matchables=matchables,
732732
)
733-
assert tests == fastseq.Match(a=357, b=0, size=8)
733+
assert tests == cyseq.Match(a=357, b=0, size=8)

0 commit comments

Comments
 (0)