Skip to content

Commit

Permalink
feat: Add fake setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sansyrox committed Oct 25, 2022
1 parent a76f298 commit 72da016
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import sys

from setuptools import setup

sys.stderr.write(
"""
===============================
Unsupported installation method
===============================
robyn doesn't support installation with `python setup.py install`.
Please use `python -m pip install .` instead.
"""
)
sys.exit(1)


# The below code will never execute, however GitHub is particularly
# picky about where it finds Python packaging metadata.
# See: https://github.com/github/feedback/discussions/6456
#
# To be removed once GitHub catches up.

setup(name="robyn", install_requires=[])

0 comments on commit 72da016

Please sign in to comment.