Skip to content

Commit

Permalink
switched to legacy editable installs
Browse files Browse the repository at this point in the history
Annoyance (PyLance) and editable installs

microsoft/pylance-release#3473
  • Loading branch information
bjoernbuth committed Aug 13, 2024
1 parent 84a7330 commit 2f1b76e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
18 changes: 0 additions & 18 deletions pyproject.toml

This file was deleted.

17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from setuptools import setup, find_packages

setup(
name="clickhelper",
version="2024.8.13.2",
author="Bjoern",
packages=find_packages(),
install_requires=[
"click",
],
entry_points={
"console_scripts": [
"clickhelper = clickhelper.dumphelp_to_file.py:main",
"clihe = clickhelper.dumphelp_to_file.py:main",
],
},
)

0 comments on commit 2f1b76e

Please sign in to comment.