File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -59,3 +59,7 @@ include-package-data = true
59
59
60
60
[tool .setuptools .dynamic ]
61
61
version = {attr = " rest_registration._version.__version__" }
62
+
63
+ [tool .setuptools .packages .find ]
64
+ include = [" rest_registration*" ]
65
+ namespaces = false
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ plugins =
57
57
django_settings_module = tests.default_settings
58
58
59
59
[tool:pytest]
60
+ pythonpath = .
60
61
DJANGO_SETTINGS_MODULE = tests.default_settings
61
62
django_find_project = false
62
63
addopts = --doctest-modules
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
- from setuptools import find_packages , setup
2
+ from setuptools import setup
3
3
4
- # see setup.cfg for package configuration
5
- setup (
6
- packages = find_packages (exclude = ['tests.*' , 'tests' ]),
7
- )
4
+ # see pyproject.toml for package configuration
5
+ setup ()
You can’t perform that action at this time.
0 commit comments