Browse Source

Fix wrong name

Arkadiusz Ryś 2 years ago
parent
commit
39184cf496
2 changed files with 4 additions and 4 deletions
  1. 2 2
      README.rst
  2. 2 2
      tasks.py

+ 2 - 2
README.rst

@@ -1,5 +1,5 @@
-ArkFast
-#######
+OntoPoint
+#########
 
 
 Installation
 Installation
 ------------
 ------------

+ 2 - 2
tasks.py

@@ -20,8 +20,8 @@ def test(c):
 def migrate_requirements(c):
 def migrate_requirements(c):
     """Copy requirements from the requirements.txt file to pyproject.toml."""
     """Copy requirements from the requirements.txt file to pyproject.toml."""
     lines = Path("requirements.txt").read_text().split("\n")
     lines = Path("requirements.txt").read_text().split("\n")
-    requirements = {"arklog": [], "test": [], "doc": [], "dev": []}
-    current = "arklog"
+    requirements = {"ontopoint": [], "test": [], "doc": [], "dev": []}
+    current = "ontopoint"
     for line in lines:
     for line in lines:
         if line.startswith("#"):
         if line.startswith("#"):
             candidate = line[1:].lower().strip()
             candidate = line[1:].lower().strip()