rename to match PyPI project name

This commit is contained in:
2024-04-27 18:43:08 +01:00
parent 915adcf054
commit 732bee7b4f
11 changed files with 12 additions and 12 deletions

View File

@ -4,7 +4,7 @@
from setuptools import setup
from pypilot._version import VERSION
from ipilot._version import VERSION
dependencies: list = []
with open("requirements.txt", "r", encoding="ascii") as dep_file:
@ -31,7 +31,7 @@ setup(
tests_require=test_dependencies,
entry_points={
"console_scripts": [
"ipilot = pypilot.main:main",
"ipilot = ipilot.main:main",
],
},
classifiers=[