chore: use src layout

This commit is contained in:
Gabriel Dugny 2024-03-24 16:58:45 +01:00 committed by Emil Stenström
parent f2c925e1e2
commit a7901c7c17
20 changed files with 4 additions and 2 deletions

View file

@ -1,13 +1,15 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os import os
from setuptools import find_packages, setup from setuptools import setup
VERSION = "0.61" VERSION = "0.61"
setup( setup(
name="django_components", name="django_components",
packages=find_packages(exclude=["tests"]), package_dir={
"django_components": "src/django_components"
},
package_data={ package_data={
"django_components": ["py.typed"], "django_components": ["py.typed"],
}, },