Skip to content

Commit

Permalink
Make setup.cfg / setup.py compatible to recent version of setuptools.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitri-Sintsov committed Apr 21, 2023
1 parent 9433116 commit 3d5627e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import djk_ui

from setuptools import setup
from setuptools import setup, find_namespace_packages

version = djk_ui.__version__

Expand All @@ -36,6 +36,11 @@
] if s != ''
]

packages = find_namespace_packages(
where='.',
include=['djk_ui', 'djk_ui.*'],
)

setup(
name='djk-bootstrap4',
version=version,
Expand All @@ -45,9 +50,7 @@
author='Dmitriy Sintsov',
author_email='[email protected]',
url='https://github.com/Dmitri-Sintsov/djk-bootstrap4',
packages=[
'djk_ui',
],
packages=packages,
include_package_data=True,
install_requires=install_reqs,
license="LGPL-3.0",
Expand Down

0 comments on commit 3d5627e

Please sign in to comment.