Skip to content

Commit c6e5cd1

Browse files
committed
Use new style Python package build
1 parent 32b5c00 commit c6e5cd1

File tree

9 files changed

+42
-65
lines changed

9 files changed

+42
-65
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ To configure add the following to your pyxll.cfg file (default values shown):
3333

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

36-
Copyright (c) 2020 PyXLL Ltd
36+
Copyright (c) PyXLL Ltd

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[metadata]
2+
name = pyxll_pycharm
3+
version = 0.3.0.b1
4+
description = Adds PyCharm debugging support to PyXLL.
5+
long_description: file: README.md
6+
long_description_content_type: text/markdown
7+
license: MIT License
8+
license_content_type: text/markdown
9+
classifiers =
10+
Programming Language :: Python :: 3 :: Only
11+
License :: OSI Approved :: MIT License
12+
Operating System :: Microsoft :: Windows
13+
project_urls =
14+
Source = https://github.com/pyxll/pyxll-pycharm
15+
Tracker = "https://github.com/pyxll/pyxll-pycharm/issues
16+
17+
[options]
18+
install_requires =
19+
pyxll >= 5.0.0
20+
pydevd-pycharm
21+
python_requires = >=3.7
22+
packages = find_namespace:
23+
include_package_data: true
24+
package_dir =
25+
= src
26+
27+
[options.packages.find]
28+
where = src
29+
30+
[options.package_data]
31+
pyxll_pycharm =
32+
resources/ribbon.xml
33+
resources/debug.png
34+
35+
[options.entry_points]
36+
pyxll =
37+
modules = pyxll_pycharm:modules
38+
ribbon = pyxll_pycharm:ribbon

setup.py

Lines changed: 0 additions & 64 deletions
This file was deleted.

src/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)