Skip to content

Commit

Permalink
Merge pull request #127 from bertsky/new-namespace-pkg
Browse files Browse the repository at this point in the history
non-legacy namespace package
  • Loading branch information
vahidrezanezhad authored May 24, 2024
2 parents 899bb9f + 45bd76f commit 721d3f7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion qurator/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion qurator/eynollah/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from json import load

install_requires = open('requirements.txt').read().split('\n')
Expand All @@ -13,8 +13,7 @@
author='Vahid Rezanezhad',
url='https://github.com/qurator-spk/eynollah',
license='Apache License 2.0',
namespace_packages=['qurator'],
packages=find_packages(exclude=['tests']),
packages=find_namespace_packages(include=['qurator']),
install_requires=install_requires,
package_data={
'': ['*.json']
Expand Down

0 comments on commit 721d3f7

Please sign in to comment.