Skip to content
Snippets Groups Projects
Unverified Commit 686825d2 authored by SKAJohanVenter's avatar SKAJohanVenter
Browse files

SAR-189 use=ing find_packages in setup.py

parent e9ebd74e
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import setuptools import setuptools
from setuptools import setup from setuptools import setup, find_packages
with open("README.md") as readme_file: with open("README.md") as readme_file:
readme = readme_file.read() readme = readme_file.read()
...@@ -15,7 +15,7 @@ setup( ...@@ -15,7 +15,7 @@ setup(
author="Anton Joubert", author="Anton Joubert",
author_email="ajoubert+ska@ska.ac.za", author_email="ajoubert+ska@ska.ac.za",
url="https://gitlab.com/ska-telescope/ska-logging", url="https://gitlab.com/ska-telescope/ska-logging",
packages=setuptools.find_packages(where="src"), packages=find_packages("src"),
package_dir={"": "src"}, package_dir={"": "src"},
include_package_data=True, include_package_data=True,
license="BSD license", license="BSD license",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment