Arkadiusz Ryś 2 лет назад
Родитель
Сommit
39184cf496
2 измененных файлов с 4 добавлено и 4 удалено
  1. 2 2
      README.rst
  2. 2 2
      tasks.py

+ 2 - 2
README.rst

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

+ 2 - 2
tasks.py

@@ -20,8 +20,8 @@ def test(c):
 def migrate_requirements(c):
     """Copy requirements from the requirements.txt file to pyproject.toml."""
     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:
         if line.startswith("#"):
             candidate = line[1:].lower().strip()