Move python file in src folder (#77)

Preparation of migration to cookiecutter-hypermodern-python template
This commit is contained in:
Oncleben31
2020-10-20 00:31:59 +02:00
committed by GitHub
parent 08035384ad
commit 4132155ab8
24 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ install:
- python setup.py install
- python setup.py sdist
before_script:
- pylint synology_dsm tests
- pylint src tests
- black --check --fast .
script:
- py.test

View File

@ -25,7 +25,8 @@ setup(
description="Python API for communication with Synology DSM",
long_description=long_description,
author="Quentin POLLET (Quentame) & FG van Zeelst (ProtoThis)",
packages=find_packages(include=["synology_dsm*"]),
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=required,
python_requires=">=3.6",
license="MIT",