-include *.rst *.txt *.md LICENSE *.pyx *.cpp *.hpp\r
-recursive-include pydevd_attach_to_process *.py *.dll *.so *.dylib *.txt *.c *.h *.bat Makefile *.sh *.pyx *.cpp *.hpp\r
-recursive-include pydevd_attach_to_process/common *.py *.dll *.so *.dylib *.txt *.c *.h *.bat Makefile *.sh *.pyx *.cpp *.hpp\r
-recursive-include pydevd_attach_to_process/linux_and_mac *.py *.dll *.so *.dylib *.txt *.c *.h *.bat Makefile *.sh *.pyx *.cpp *.hpp\r
-recursive-include pydevd_attach_to_process/winappdbg *.py *.dll *.so *.dylib *.txt *.c *.h *.bat Makefile *.sh *.pyx *.cpp *.hpp\r
-recursive-include pydevd_attach_to_process/windows *.py *.dll *.so *.dylib *.txt *.c *.h *.bat Makefile *.sh *.pyx *.cpp *.hpp\r
-recursive-include _pydevd_bundle *.pyx *.cpp *.hpp\r
-recursive-include build_tools *.py
\ No newline at end of file
+include LICENSE\r
+recursive-include pydevd_attach_to_process *.py *.so\r
+recursive-include _pydevd_bundle *.py *.c\r
+recursive-include _pydevd_frame_eval *.py *.c\r
def is_pure(self):\r
return False\r
\r
-\r
-data_files = []\r
-\r
-\r
-def accept_file(f):\r
- f = f.lower()\r
- for ext in '.py .dll .so .dylib .txt .cpp .h .bat .c .sh .md .txt'.split():\r
- if f.endswith(ext):\r
- return True\r
-\r
- return f in ['readme', 'makefile']\r
-\r
-\r
-data_files.append(('pydevd_attach_to_process', [os.path.join('pydevd_attach_to_process', f) for f in os.listdir('pydevd_attach_to_process') if accept_file(f)]))\r
-for root, dirs, files in os.walk("pydevd_attach_to_process"):\r
- for d in dirs:\r
- data_files.append((os.path.join(root, d), [os.path.join(root, d, f) for f in os.listdir(os.path.join(root, d)) if accept_file(f)]))\r
-\r
import pydevd\r
version = pydevd.__version__\r
\r
'pydevd = pydevd:main',\r
],\r
},\r
- data_files=data_files,\r
keywords=['pydev', 'pydevd', 'pydev.debugger'],\r
include_package_data=True,\r
zip_safe=False,\r