Skip to content

Urgent hotfix to #107 #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import os
from setuptools import setup
from setuptools.command.develop import develop
import logging

# Setupstools >=64
try:
from setuptools.command.editable_wheel import editable_wheel
except ImportError:
editable_wheel_command = None
else:
from wheel.wheelfile import WheelFile

class editable_wheel_command(editable_wheel):
"""Custom editable_wheel command which installs the .pth file to the
wheel file for editable installs."""
def _create_wheel_file(self, bdist_wheel):
wheel_path = super()._create_wheel_file(bdist_wheel)
with WheelFile(wheel_path, 'a') as wheel:
wheel.write("labscript-suite.pth")
return wheel_path


# Setuptools <= 63:
class develop_command(develop):
"""Custom develop command which installs the .pth file to site-packages for editable
installs."""
def run(self):
path = os.path.join(self.install_dir, 'labscript-suite.pth')
super().run()
if not self.uninstall:
logging.info(f'Copying labscript-suite.pth to {path}')
if not self.dry_run:
self.copy_file('labscript-suite.pth', path)

setup(
cmdclass={
'develop': develop_command,
'editable_wheel': editable_wheel_command,
},
)