UPD: setup.py: replaced fixed (and thus always incomplete) list of packages with find_packages().
This commit is contained in:
8
setup.py
8
setup.py
@@ -2,7 +2,7 @@
|
||||
import os
|
||||
import posix
|
||||
import sys
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
from setuptools import Command
|
||||
|
||||
|
||||
@@ -53,11 +53,7 @@ setup(
|
||||
cmdclass={
|
||||
'mkpyenv': SetupPythonEnvironment,
|
||||
},
|
||||
packages=[
|
||||
'dav_events',
|
||||
'dav_events.console_scripts',
|
||||
'dav_events.migrations',
|
||||
],
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
||||
Reference in New Issue
Block a user