Skip to content
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

Attempt to work around bug PY-40661 in PyCharm #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ To configure add the following to your pyxll.cfg file (default values shown):

For more information about installing and using PyXLL see https://www.pyxll.com.

Copyright (c) 2020 PyXLL Ltd
Copyright (c) PyXLL Ltd
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
174 changes: 0 additions & 174 deletions pyxll_pycharm/__init__.py

This file was deleted.

37 changes: 37 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[metadata]
name = pyxll_pycharm
version = 0.3.0.b1
description = Adds PyCharm debugging support to PyXLL.
long_description: file: README.md
long_description_content_type: text/markdown
license: MIT License
classifiers =
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
project_urls =
Source = https://github.com/pyxll/pyxll-pycharm
Tracker = "https://github.com/pyxll/pyxll-pycharm/issues

[options]
install_requires =
pyxll >= 5.0.0
pydevd-pycharm
python_requires = >=3.7
packages = find_namespace:
include_package_data: true
package_dir =
= src

[options.packages.find]
where = src

[options.package_data]
pyxll_pycharm =
resources/ribbon.xml
resources/debug.png

[options.entry_points]
pyxll =
modules = pyxll_pycharm:modules
ribbon = pyxll_pycharm:ribbon
62 changes: 0 additions & 62 deletions setup.py

This file was deleted.

Empty file added src/__init__.py
Empty file.
Loading