Skip to content

Commit

Permalink
Fix package structure (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun authored Oct 20, 2021
1 parent 15c6956 commit 971a417
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### [v0.6.1] - 2021/10/20

### Fixed

- Package structure

## [v0.6.0] - 2021/10/20

### Changed
Expand All @@ -15,6 +21,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Use Zeroconf questions requesting multicast responses for better support of Magic LAN devices

## [v0.5.4] - 2021/10/18

### Fixed

- Fix pip installation

## [v0.5.3] - 2021/10/18

### Changed
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import shlex
from subprocess import check_call

from setuptools import setup
from setuptools import find_packages, setup
from setuptools.command.develop import develop

with open("README.md", "r") as fh:
Expand Down Expand Up @@ -29,7 +29,8 @@ def run(self):
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/2Fake/devolo_plc_api",
packages=["devolo_plc_api"],
packages=find_packages(exclude=("tests*",
)),
package_data={
"devolo_plc_api": ["py.typed"],
},
Expand Down

0 comments on commit 971a417

Please sign in to comment.